remove some random indentation stuff, yay for efficiency.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79797 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2009-08-23 00:51:00 +00:00
parent 2d8e3d20be
commit c281de1d84
2 changed files with 6 additions and 19 deletions

View File

@ -183,10 +183,10 @@ public:
#ifndef NDEBUG
void DbgScope::dump() const {
std::string Indent(IndentLevel, ' ');
cerr << Indent; Desc.dump();
cerr << " [" << StartLabelID << ", " << EndLabelID << "]\n";
raw_ostream &err = errs();
err.indent(IndentLevel);
Desc.dump();
err << " [" << StartLabelID << ", " << EndLabelID << "]\n";
IndentLevel += 2;