diff options
author | Roman Divacky <rdivacky@freebsd.org> | 2011-12-12 17:34:04 +0000 |
---|---|---|
committer | Roman Divacky <rdivacky@freebsd.org> | 2011-12-12 17:34:04 +0000 |
commit | a0c17a495b12debcb7f206993bbc6020e2e6e8df (patch) | |
tree | de8c97fac0dbb38a0e2480ea66776796b61943e7 /include | |
parent | b813f924a749396ffb4a4bd087ee1dbb678551f3 (diff) | |
download | external_llvm-a0c17a495b12debcb7f206993bbc6020e2e6e8df.zip external_llvm-a0c17a495b12debcb7f206993bbc6020e2e6e8df.tar.gz external_llvm-a0c17a495b12debcb7f206993bbc6020e2e6e8df.tar.bz2 |
Add support for gnu_indirect_function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146377 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/ELF.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Support/ELF.h b/include/llvm/Support/ELF.h index a81be55..6dd76ea 100644 --- a/include/llvm/Support/ELF.h +++ b/include/llvm/Support/ELF.h @@ -888,6 +888,7 @@ enum { 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_LOPROC = 13, // Lowest processor-specific symbol type STT_HIPROC = 15 // Highest processor-specific symbol type }; |