Don't waste as much horizontal space on #uses flag when printing

llvm-svn: 1459
This commit is contained in:
Chris Lattner 2001-12-14 16:29:12 +00:00
parent ef99d3c144
commit 3cb3a1f06c
1 changed files with 1 additions and 1 deletions

View File

@ -481,7 +481,7 @@ void AssemblyWriter::printInfoComment(const Value *V) {
if (Slot >= 0) Out << ":" << Slot;
else Out << ":<badref>";
}
Out << "\t[#uses=" << V->use_size() << "]"; // Output # uses
Out << " [#uses=" << V->use_size() << "]"; // Output # uses
}
}