summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-12-14 16:29:12 +0000
committerChris Lattner <sabre@nondot.org>2001-12-14 16:29:12 +0000
commit3cb3a1f06cd8eea97920c961902917875e5bf360 (patch)
tree63caf1f2e22516c1cba3151074f49861292cbb1d /llvm/lib
parentef99d3c1446f62dbdd8d5a6e55d0f70cf601230d (diff)
downloadbcm5719-llvm-3cb3a1f06cd8eea97920c961902917875e5bf360.tar.gz
bcm5719-llvm-3cb3a1f06cd8eea97920c961902917875e5bf360.zip
Don't waste as much horizontal space on #uses flag when printing
llvm-svn: 1459
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/VMCore/AsmWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/AsmWriter.cpp b/llvm/lib/VMCore/AsmWriter.cpp
index d853fb9bbc0..2b3a1c4c220 100644
--- a/llvm/lib/VMCore/AsmWriter.cpp
+++ b/llvm/lib/VMCore/AsmWriter.cpp
@@ -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
}
}
OpenPOWER on IntegriCloud