aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/AsmWriter.cpp
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
commitf7a551fd929a4a849883cde04cfe54e0590a38b7 (patch)
treeb8ebaffc1e5eae23be2b87a36470aec07c26af8f /lib/VMCore/AsmWriter.cpp
parent72e002564e3011ff2e568556f3b1a03a1c87927f (diff)
downloadexternal_llvm-f7a551fd929a4a849883cde04cfe54e0590a38b7.zip
external_llvm-f7a551fd929a4a849883cde04cfe54e0590a38b7.tar.gz
external_llvm-f7a551fd929a4a849883cde04cfe54e0590a38b7.tar.bz2
Don't waste as much horizontal space on #uses flag when printing
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1459 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/AsmWriter.cpp')
-rw-r--r--lib/VMCore/AsmWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp
index d853fb9..2b3a1c4 100644
--- a/lib/VMCore/AsmWriter.cpp
+++ b/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
}
}