Define the header bit indicating VFP-format floating point.

This commit is contained in:
thorpej 2002-11-21 06:25:57 +00:00
parent 89780fb9d3
commit efce487d2d
2 changed files with 3 additions and 0 deletions

View File

@ -60,6 +60,7 @@ struct external_filehdr
#define F_APCS_26 (0x0400)
#define F_APCS_SET (0x0800)
#define F_SOFT_FLOAT (0x2000)
#define F_VFP_FLOAT (0x4000)
/* Bits stored in flags field of the internal_f structure */

View File

@ -33,6 +33,7 @@
#define EF_NEW_ABI 0x80
#define EF_OLD_ABI 0x100
#define EF_SOFT_FLOAT 0x200
#define EF_VFP_FLOAT 0x400
/* Other constants defined in the ARM ELF spec. version A-08. */
#define EF_ARM_SYMSARESORTED 0x04 /* NB conflicts with EF_INTERWORK */
@ -48,6 +49,7 @@
#define F_APCS_FLOAT EF_APCS_FLOAT
#define F_PIC EF_PIC
#define F_SOFT_FLOAT EF_SOFT_FLOAT
#define F_VFP_FLOAT EF_VFP_FLOAT
/* Additional symbol types for Thumb. */
#define STT_ARM_TFUNC STT_LOPROC /* A Thumb function. */