mirror of
https://github.com/intel/llvm.git
synced 2026-01-30 14:07:28 +08:00
Don't print billions of spaces for a label with no indent.
llvm-svn: 39521
This commit is contained in:
@@ -74,7 +74,7 @@ namespace {
|
||||
}
|
||||
|
||||
std::ostream &Indent(int Delta = 0) const {
|
||||
for (unsigned i = 0, e = IndentLevel+Delta; i != e; ++i)
|
||||
for (int i = 0, e = IndentLevel+Delta; i < e; ++i)
|
||||
OS << " ";
|
||||
return OS;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user