diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-11-27 13:39:48 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-11-27 13:39:48 +0000 |
commit | 90e3e3a429e75a7d3671afcc30ed376b6186fd58 (patch) | |
tree | 1afdd3719869f2b6225fcba37425143de0961a30 /include/llvm/Object/MachOFormat.h | |
parent | 2acadbddf6783055249da9fc9ea40a05b83ce56a (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/MachOFormat.h')
-rw-r--r-- | include/llvm/Object/MachOFormat.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/llvm/Object/MachOFormat.h b/include/llvm/Object/MachOFormat.h index 320140773d..0a2cceccb8 100644 --- a/include/llvm/Object/MachOFormat.h +++ b/include/llvm/Object/MachOFormat.h @@ -259,6 +259,15 @@ namespace macho { }; /// @} + /// @name Relocation Data + /// @{ + + struct RelocationEntry { + uint32_t Word0; + uint32_t Word1; + }; + + /// @} // See <mach-o/nlist.h>. enum SymbolTypeType { |