diff options
author | Chris Lattner <sabre@nondot.org> | 2001-12-14 16:29:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-12-14 16:29:12 +0000 |
commit | f7a551fd929a4a849883cde04cfe54e0590a38b7 (patch) | |
tree | b8ebaffc1e5eae23be2b87a36470aec07c26af8f | |
parent | 72e002564e3011ff2e568556f3b1a03a1c87927f (diff) | |
download | external_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
-rw-r--r-- | lib/VMCore/AsmWriter.cpp | 2 |
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 } } |