Don't waste as much horizontal space on #uses flag when printing
authorChris Lattner <sabre@nondot.org>
Fri, 14 Dec 2001 16:29:12 +0000 (16:29 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 14 Dec 2001 16:29:12 +0000 (16:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1459 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/AsmWriter.cpp

index d853fb9bbc0d1d2552d2de5daac307ca06a875a5..2b3a1c4c220133f26508a688a69d741172a5ad3d 100644 (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
   }
 }