summaryrefslogtreecommitdiff
path: root/tools/macho-dump
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-12-10 06:19:39 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-12-10 06:19:39 +0000
commita87d7ec234e1d4a31f4403ee9495d7700e6a593c (patch)
tree2c676e51c06087a625db7c5c1db36685cf27ea06 /tools/macho-dump
parentc79637c3cdeaf72f2430d2ec056547efad53c1ed (diff)
downloadllvm-a87d7ec234e1d4a31f4403ee9495d7700e6a593c.tar.gz
llvm-a87d7ec234e1d4a31f4403ee9495d7700e6a593c.tar.bz2
llvm-a87d7ec234e1d4a31f4403ee9495d7700e6a593c.tar.xz
Mach-O: Tweak field name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121465 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/macho-dump')
-rw-r--r--tools/macho-dump/macho-dump.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/macho-dump/macho-dump.cpp b/tools/macho-dump/macho-dump.cpp
index 982443a2ce..f4854bec47 100644
--- a/tools/macho-dump/macho-dump.cpp
+++ b/tools/macho-dump/macho-dump.cpp
@@ -288,7 +288,7 @@ static int DumpDysymtabCommand(MachOObject &Obj,
if (!DLC)
return Error("unable to read segment load command");
- outs() << " ('ilocalsym', " << DLC->LocalSymbolIndex << ")\n";
+ outs() << " ('ilocalsym', " << DLC->LocalSymbolsIndex << ")\n";
outs() << " ('nlocalsym', " << DLC->NumLocalSymbols << ")\n";
outs() << " ('iextdefsym', " << DLC->ExternalSymbolsIndex << ")\n";
outs() << " ('nextdefsym', " << DLC->NumExternalSymbols << ")\n";