diff --git a/llvm/lib/VMCore/AsmWriter.cpp b/llvm/lib/VMCore/AsmWriter.cpp index d853fb9bbc0d..2b3a1c4c2201 100644 --- a/llvm/lib/VMCore/AsmWriter.cpp +++ b/llvm/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 } }