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 | 3cb3a1f06cd8eea97920c961902917875e5bf360 (patch) | |
| tree | 63caf1f2e22516c1cba3151074f49861292cbb1d /llvm/lib | |
| parent | ef99d3c1446f62dbdd8d5a6e55d0f70cf601230d (diff) | |
| download | bcm5719-llvm-3cb3a1f06cd8eea97920c961902917875e5bf360.tar.gz bcm5719-llvm-3cb3a1f06cd8eea97920c961902917875e5bf360.zip | |
Don't waste as much horizontal space on #uses flag when printing
llvm-svn: 1459
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/VMCore/AsmWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/AsmWriter.cpp b/llvm/lib/VMCore/AsmWriter.cpp index d853fb9bbc0..2b3a1c4c220 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 << ":<badref>"; } - Out << "\t[#uses=" << V->use_size() << "]"; // Output # uses + Out << " [#uses=" << V->use_size() << "]"; // Output # uses } } |

