summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2015-06-23 16:41:57 +0000
committerTom Stellard <thomas.stellard@amd.com>2015-06-23 16:41:57 +0000
commit82a56b01aef8d71e822fcda90146df72d4ca1e08 (patch)
treee0b7339e4c0bec37c324e14a88296c901b6672a1 /llvm
parentf3db51de5e44f2392b91444d4bbae9c71facfb44 (diff)
downloadbcm5719-llvm-82a56b01aef8d71e822fcda90146df72d4ca1e08.tar.gz
bcm5719-llvm-82a56b01aef8d71e822fcda90146df72d4ca1e08.zip
ELF: Fix defintion of STT_LOOS and STT_HIOS.
Reviewers: chandlerc, Bigcheese, rafael Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D10647 llvm-svn: 240426
Diffstat (limited to 'llvm')
-rw-r--r--llvm/include/llvm/Support/ELF.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Support/ELF.h b/llvm/include/llvm/Support/ELF.h
index 4e9f0969be8..3804d2626fc 100644
--- a/llvm/include/llvm/Support/ELF.h
+++ b/llvm/include/llvm/Support/ELF.h
@@ -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
};
OpenPOWER on IntegriCloud