From: Chris Lattner Date: Fri, 14 Dec 2001 16:29:12 +0000 (+0000) Subject: Don't waste as much horizontal space on #uses flag when printing X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f7a551fd929a4a849883cde04cfe54e0590a38b7;p=oota-llvm.git 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 --- diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index d853fb9bbc0..2b3a1c4c220 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 << ":"; } - Out << "\t[#uses=" << V->use_size() << "]"; // Output # uses + Out << " [#uses=" << V->use_size() << "]"; // Output # uses } }