1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

llvm-objdump: Fix whitespace.

llvm-svn: 141886
This commit is contained in:
Michael J. Spencer 2011-10-13 20:37:20 +00:00
parent fa3f63c14a
commit 309e0cb513

View File

@ -321,7 +321,7 @@ static void PrintSectionHeaders(const ObjectFile *o) {
if (error(si->isData(Data))) return;
if (error(si->isBSS(BSS))) return;
std::string Type = (std::string(Text ? "TEXT " : "") +
(Data ? "DATA " : "") + (BSS ? "BSS" : ""));
(Data ? "DATA " : "") + (BSS ? "BSS" : ""));
outs() << format("%3d %-13s %09"PRIx64" %017"PRIx64" %s\n", i, Name.str().c_str(), Size,
Address, Type.c_str());
++i;