80-col.
authorMichael J. Spencer <bigcheesegs@gmail.com>
Mon, 17 Oct 2011 23:37:43 +0000 (23:37 +0000)
committerMichael J. Spencer <bigcheesegs@gmail.com>
Mon, 17 Oct 2011 23:37:43 +0000 (23:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142309 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Object/ObjectFile.h

index ca8df597521152a83ea3ba791de4a64910266f03..a0be264fe7ca6c861fc7cf79bca4a8564b5c52fd 100644 (file)
@@ -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;