aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-04-07 16:07:35 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-04-07 16:07:35 +0000
commit3eff318cbac281d46e8c8dfef16ffccbceebc855 (patch)
treed94e62d91889b1c18b46e0a8454dac1ed14e7af2 /include
parent0be4eafd9c90d5e584b951fe2970f024341486c3 (diff)
downloadexternal_llvm-3eff318cbac281d46e8c8dfef16ffccbceebc855.zip
external_llvm-3eff318cbac281d46e8c8dfef16ffccbceebc855.tar.gz
external_llvm-3eff318cbac281d46e8c8dfef16ffccbceebc855.tar.bz2
Remove MachOObjectFile::getObject.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178986 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Object/MachO.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/Object/MachO.h b/include/llvm/Object/MachO.h
index 2e50415..f3b47a0 100644
--- a/include/llvm/Object/MachO.h
+++ b/include/llvm/Object/MachO.h
@@ -161,8 +161,9 @@ public:
const MachOFormat::SymbolTableEntry *
getSymbolTableEntry(DataRefImpl DRI) const;
bool is64Bit() const;
-
- const MachOObject *getObject() const { return MachOObj.get(); }
+ const LoadCommandInfo &getLoadCommandInfo(unsigned Index) const;
+ void ReadULEB128s(uint64_t Index, SmallVectorImpl<uint64_t> &Out) const;
+ const macho::Header &getHeader() const;
static inline bool classof(const Binary *v) {
return v->isMachO();