aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/FormattedStream.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-14 23:14:10 +0000
committerChris Lattner <sabre@nondot.org>2009-07-14 23:14:10 +0000
commitca99c348eda4bb780b2d736c3dbd2a8179f1376c (patch)
treeec15f736b46f4dca2bda77bb1088e8ded1dc3694 /llvm/lib/Support/FormattedStream.cpp
parent170229f68d84a4f479474e1d4fe21f6e51c9a3ec (diff)
downloadllvm-ca99c348eda4bb780b2d736c3dbd2a8179f1376c.zip
llvm-ca99c348eda4bb780b2d736c3dbd2a8179f1376c.tar.gz
llvm-ca99c348eda4bb780b2d736c3dbd2a8179f1376c.tar.bz2
minor syntax cleanup
llvm-svn: 75707
Diffstat (limited to 'llvm/lib/Support/FormattedStream.cpp')
-rw-r--r--llvm/lib/Support/FormattedStream.cpp16
1 files changed, 5 insertions, 11 deletions
diff --git a/llvm/lib/Support/FormattedStream.cpp b/llvm/lib/Support/FormattedStream.cpp
index 01dea36..a10f71a 100644
--- a/llvm/lib/Support/FormattedStream.cpp
+++ b/llvm/lib/Support/FormattedStream.cpp
@@ -7,20 +7,17 @@
//
//===----------------------------------------------------------------------===//
//
-// This file contains the implementation of formatted_raw_ostream and
-// friends.
+// This file contains the implementation of formatted_raw_ostream.
//
//===----------------------------------------------------------------------===//
#include "llvm/Support/FormattedStream.h"
-
using namespace llvm;
/// ComputeColumn - Examine the current output and figure out which
/// column we end up in after output.
///
-void formatted_raw_ostream::ComputeColumn(const char *Ptr, unsigned Size)
-{
+void formatted_raw_ostream::ComputeColumn(const char *Ptr, unsigned Size) {
// Keep track of the current column by scanning the string for
// special characters
@@ -39,20 +36,17 @@ void formatted_raw_ostream::ComputeColumn(const char *Ptr, unsigned Size)
/// \param MinPad - The minimum space to give after the most recent
/// I/O, even if the current column + minpad > newcol.
///
-void formatted_raw_ostream::PadToColumn(unsigned NewCol, unsigned MinPad)
-{
+void formatted_raw_ostream::PadToColumn(unsigned NewCol, unsigned MinPad) {
flush();
// Output spaces until we reach the desired column.
unsigned num = NewCol - Column;
- if (NewCol < Column || num < MinPad) {
+ if (NewCol < Column || num < MinPad)
num = MinPad;
- }
// TODO: Write a whole string at a time.
- while (num-- > 0) {
+ while (num-- > 0)
write(' ');
- }
}
/// fouts() - This returns a reference to a formatted_raw_ostream for