diff options
Diffstat (limited to 'lib/Support/FormattedStream.cpp')
-rw-r--r-- | lib/Support/FormattedStream.cpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/lib/Support/FormattedStream.cpp b/lib/Support/FormattedStream.cpp index 4e62427530..70f2cfa6ae 100644 --- a/lib/Support/FormattedStream.cpp +++ b/lib/Support/FormattedStream.cpp @@ -63,16 +63,7 @@ void formatted_raw_ostream::PadToColumn(unsigned NewCol) { ComputeColumn(getBufferStart(), GetNumBytesInBuffer()); // Output spaces until we reach the desired column. - unsigned num = NewCol - ColumnScanned; - if (NewCol < ColumnScanned || num < 1) - num = 1; - - // Keep a buffer of spaces handy to speed up processing. - const char *Spaces = " " - " "; - - assert(num < MAX_COLUMN_PAD && "Unexpectedly large column padding"); - write(Spaces, num); + indent(std::max(int(NewCol - ColumnScanned), 1)); } void formatted_raw_ostream::write_impl(const char *Ptr, size_t Size) { |