From f7a551fd929a4a849883cde04cfe54e0590a38b7 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 14 Dec 2001 16:29:12 +0000 Subject: [PATCH] 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 --- lib/VMCore/AsmWriter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } } -- 2.34.1