diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/elf/common.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 69cc57d..4b933b1 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2018-08-24 H.J. Lu <hongjiu.lu@intel.com> + + * elf/common.h (GNU_PROPERTY_X86_UINT32_VALID): New. + 2018-08-21 John Darrington <john@darrington.wattle.id.au> * elf/s12z.h: Rename R_S12Z_UKNWN_3 to R_S12Z_EXT18. diff --git a/include/elf/common.h b/include/elf/common.h index 1a940ff..55c5505 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -752,6 +752,9 @@ #define GNU_PROPERTY_X86_ISA_1_NEEDED 0xc0000001 #define GNU_PROPERTY_X86_FEATURE_1_AND 0xc0000002 +/* Set by linker to indicate that the property is valid. */ +#define GNU_PROPERTY_X86_UINT32_VALID (1U << 31) + #define GNU_PROPERTY_X86_ISA_1_486 (1U << 0) #define GNU_PROPERTY_X86_ISA_1_586 (1U << 1) #define GNU_PROPERTY_X86_ISA_1_686 (1U << 2) |