diff options
Diffstat (limited to 'include/elf')
-rw-r--r-- | include/elf/ChangeLog | 4 | ||||
-rw-r--r-- | include/elf/arm.h | 17 |
2 files changed, 21 insertions, 0 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index f4f7107..942923d 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,7 @@ +2014-12-25 Thomas Preud'homme <thomas.preudhomme@arm.com> + + * arm.h: New AEABI_FP_number_model_* and AEABI_VFP_args_* enum values. + 2014-12-06 Eric Botcazou <ebotcazou@adacore.com> * common.h (EM_VISIUM): Define. diff --git a/include/elf/arm.h b/include/elf/arm.h index 34afdfd..e85536b 100644 --- a/include/elf/arm.h +++ b/include/elf/arm.h @@ -319,6 +319,23 @@ enum Tag_VFP_HP_extension = Tag_FP_HP_extension }; +/* Values for Tag_ABI_FP_number_model. */ +enum +{ + AEABI_FP_number_model_none = 0, + AEABI_FP_number_model_ieee754_number = 1, + AEABI_FP_number_model_rtabi = 2, + AEABI_FP_number_model_ieee754_all = 3 +}; + +/* Values for Tag_ABI_VFP_args. */ +enum +{ + AEABI_VFP_args_base = 0, + AEABI_VFP_args_vfp = 1, + AEABI_VFP_args_toolchain = 2, + AEABI_VFP_args_compatible = 3 +}; #endif /* The name of the note section used to identify arm variants. */ |