summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2011-10-17 23:37:43 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2011-10-17 23:37:43 +0000
commit2c10ecbe4c800bd8a2e1b3e05c4eedf75658b565 (patch)
tree17db9dba8848e3982b3daf6d87cc5fb133039b13 /include
parentd5d52132d78e006842a0cf9b6ef5a9feec661711 (diff)
downloadllvm-2c10ecbe4c800bd8a2e1b3e05c4eedf75658b565.tar.gz
llvm-2c10ecbe4c800bd8a2e1b3e05c4eedf75658b565.tar.bz2
llvm-2c10ecbe4c800bd8a2e1b3e05c4eedf75658b565.tar.xz
80-col.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142309 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Object/ObjectFile.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/Object/ObjectFile.h b/include/llvm/Object/ObjectFile.h
index ca8df59752..a0be264fe7 100644
--- a/include/llvm/Object/ObjectFile.h
+++ b/include/llvm/Object/ObjectFile.h
@@ -229,10 +229,12 @@ protected:
virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const =0;
virtual error_code getSymbolOffset(DataRefImpl Symb, uint64_t &Res) const =0;
virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const = 0;
+ virtual error_code getSymbolType(DataRefImpl Symb,
+ SymbolRef::Type &Res) const = 0;
virtual error_code getSymbolNMTypeChar(DataRefImpl Symb, char &Res) const = 0;
virtual error_code isSymbolInternal(DataRefImpl Symb, bool &Res) const = 0;
virtual error_code isSymbolGlobal(DataRefImpl Symb, bool &Res) const = 0;
- virtual error_code getSymbolType(DataRefImpl Symb, SymbolRef::Type &Res) const = 0;
+
// Same as above for SectionRef.
friend class SectionRef;