ELF: Fix defintion of STT_LOOS and STT_HIOS.
authorTom Stellard <thomas.stellard@amd.com>
Tue, 23 Jun 2015 16:41:57 +0000 (16:41 +0000)
committerTom Stellard <thomas.stellard@amd.com>
Tue, 23 Jun 2015 16:41:57 +0000 (16:41 +0000)
Reviewers: chandlerc, Bigcheese, rafael

Subscribers: llvm-commits

Differential Revision: http://reviews.llvm.org/D10647

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240426 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/ELF.h

index 4e9f0969be85170b6d1c251243c64a6431a49c7f..3804d2626fc3a401d378ffc1e45b4a93de8b563c 100644 (file)
@@ -823,9 +823,9 @@ enum {
   STT_FILE    = 4,   // Local, absolute symbol that refers to a file
   STT_COMMON  = 5,   // An uninitialized common block
   STT_TLS     = 6,   // Thread local data object
-  STT_LOOS    = 7,   // Lowest operating system-specific symbol type
-  STT_HIOS    = 8,   // Highest operating system-specific symbol type
   STT_GNU_IFUNC = 10, // GNU indirect function
+  STT_LOOS    = 10,  // Lowest operating system-specific symbol type
+  STT_HIOS    = 12,  // Highest operating system-specific symbol type
   STT_LOPROC  = 13,  // Lowest processor-specific symbol type
   STT_HIPROC  = 15   // Highest processor-specific symbol type
 };