diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2011-10-17 23:55:06 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2011-10-17 23:55:06 +0000 |
commit | 206d17cf605293f1c12d8bfa8cf72826a29b253f (patch) | |
tree | 26c4f23c70160db482d564b5043fe1b9124fa3b6 /lib/Object | |
parent | 9b2b812fea4df160437e7b7d56e38f6335189ad0 (diff) | |
download | external_llvm-206d17cf605293f1c12d8bfa8cf72826a29b253f.zip external_llvm-206d17cf605293f1c12d8bfa8cf72826a29b253f.tar.gz external_llvm-206d17cf605293f1c12d8bfa8cf72826a29b253f.tar.bz2 |
Object: Add some types to SymbolRef::Type.
Some of these can be true at the same time and there are a lot to add,
so this should be turned into a bitfield. Some of the other accessors
should probably be folded into this.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142318 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Object')
-rw-r--r-- | lib/Object/ELFObjectFile.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Object/ELFObjectFile.cpp b/lib/Object/ELFObjectFile.cpp index a5e3910..97ba916 100644 --- a/lib/Object/ELFObjectFile.cpp +++ b/lib/Object/ELFObjectFile.cpp @@ -621,6 +621,12 @@ error_code ELFObjectFile<target_endianness, is64Bits> } switch (symb->getType()) { + case ELF::STT_SECTION: + Result = SymbolRef::ST_Debug; + break; + case ELF::STT_FILE: + Result = SymbolRef::ST_File; + break; case ELF::STT_FUNC: Result = SymbolRef::ST_Function; break; |