File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
llvm/include/llvm/Support Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -904,7 +904,8 @@ enum {
904
904
SHT_ARM_ATTRIBUTES = 0x70000003U ,
905
905
SHT_ARM_DEBUGOVERLAY = 0x70000004U ,
906
906
SHT_ARM_OVERLAYSECTION = 0x70000005U ,
907
-
907
+ SHT_HEX_ORDERED = 0x70000000 , // Link editor is to sort the entries in
908
+ // this section based on their sizes
908
909
SHT_X86_64_UNWIND = 0x70000001 , // Unwind information
909
910
910
911
SHT_HIPROC = 0x7fffffff , // Highest processor architecture-specific type.
@@ -969,7 +970,12 @@ enum {
969
970
// sets this flag besides being able to refer to data in a section that does
970
971
// not set it; likewise, a small code model object can refer only to code in a
971
972
// section that does not set this flag.
972
- SHF_X86_64_LARGE = 0x10000000
973
+ SHF_X86_64_LARGE = 0x10000000 ,
974
+
975
+ // All sections with the GPREL flag are grouped into a global data area
976
+ // for faster accesses
977
+ SHF_HEX_GPREL = 0x10000000
978
+
973
979
};
974
980
975
981
// Section Group Flags
You can’t perform that action at this time.
0 commit comments