diff options
author | Dan Gohman <gohman@apple.com> | 2008-05-27 20:29:07 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-05-27 20:29:07 +0000 |
commit | 7edd009efe6dda2a051f49709148e2cc42a83339 (patch) | |
tree | db25990ec61b14cc542b092dcab11983f403a09a /lib/Support/ConstantRange.cpp | |
parent | 00481ed5db48ca7cdfc165fb94781017def18717 (diff) |
Tidy up whitespace in ConstantRange::print output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51606 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/ConstantRange.cpp')
-rw-r--r-- | lib/Support/ConstantRange.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/ConstantRange.cpp b/lib/Support/ConstantRange.cpp index 4a74d42116..0d22b32350 100644 --- a/lib/Support/ConstantRange.cpp +++ b/lib/Support/ConstantRange.cpp @@ -464,7 +464,7 @@ ConstantRange ConstantRange::truncate(uint32_t DstTySize) const { /// void ConstantRange::print(std::ostream &OS) const { OS << "[" << Lower.toStringSigned(10) << "," - << Upper.toStringSigned(10) << " )"; + << Upper.toStringSigned(10) << ")"; } /// dump - Allow printing from a debugger easily... |