diff options
author | James Molloy <james.molloy@arm.com> | 2016-03-24 09:23:51 +0000 |
---|---|---|
committer | James Molloy <james.molloy@arm.com> | 2016-03-24 09:23:51 +0000 |
commit | 66d1cd513035b7d48d0fb08d71b31884c5f85308 (patch) | |
tree | 458d494f240abce4530c0d3a6b1152bdbaef1633 /tools/llvm-nm | |
parent | 48945fb1c0b6895ca8a430997b3d21e1aa122e87 (diff) |
[llvm-nm] Fix r264247
I committed the test changes successfully but managed to miss the actual code change! (lack of git -a)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@264249 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-nm')
-rw-r--r-- | tools/llvm-nm/llvm-nm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-nm/llvm-nm.cpp b/tools/llvm-nm/llvm-nm.cpp index 50405a9bcfc..65e9156a74d 100644 --- a/tools/llvm-nm/llvm-nm.cpp +++ b/tools/llvm-nm/llvm-nm.cpp @@ -658,7 +658,7 @@ static void sortAndPrintSymbolList(SymbolicFile &Obj, bool printName, if (MachO) outs() << I->Address << " " << "0" /* SymbolSizeStr */ << "\n"; else - outs() << SymbolAddrStr << SymbolSizeStr << "\n"; + outs() << SymbolAddrStr << " " << SymbolSizeStr << "\n"; } else if (OutputFormat == bsd || (OutputFormat == darwin && !MachO)) { if (PrintAddress) outs() << SymbolAddrStr << ' '; |