llvm-objdump: Fix whitespace.

llvm-svn: 141886
This commit is contained in:
Michael J. Spencer 2011-10-13 20:37:20 +00:00
parent ee84f64f0b
commit 8f67d47d0d
1 changed files with 1 additions and 1 deletions

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;