aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Object/MachOObject.h
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-11-27 13:39:48 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-11-27 13:39:48 +0000
commit90e3e3a429e75a7d3671afcc30ed376b6186fd58 (patch)
tree1afdd3719869f2b6225fcba37425143de0961a30 /include/llvm/Object/MachOObject.h
parent2acadbddf6783055249da9fc9ea40a05b83ce56a (diff)
macho-dump: Add support for dumping relocation entries.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120216 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Object/MachOObject.h')
-rw-r--r--include/llvm/Object/MachOObject.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Object/MachOObject.h b/include/llvm/Object/MachOObject.h
index 77a8d3592e..53c7abf34a 100644
--- a/include/llvm/Object/MachOObject.h
+++ b/include/llvm/Object/MachOObject.h
@@ -137,6 +137,9 @@ public:
const LoadCommandInfo &LCI,
unsigned Index,
InMemoryStruct<macho::Section64> &Res) const;
+ void ReadRelocationEntry(
+ uint64_t RelocationTableOffset, unsigned Index,
+ InMemoryStruct<macho::RelocationEntry> &Res) const;
/// @}
};