projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
00481ed
)
Tidy up whitespace in ConstantRange::print output.
author
Dan Gohman
<gohman@apple.com>
Tue, 27 May 2008 20:29:07 +0000
(20:29 +0000)
committer
Dan Gohman
<gohman@apple.com>
Tue, 27 May 2008 20:29:07 +0000
(20:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51606
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Support/ConstantRange.cpp
patch
|
blob
|
history
diff --git
a/lib/Support/ConstantRange.cpp
b/lib/Support/ConstantRange.cpp
index 4a74d4211638d8001d9e802018ce04d6dccaf4b1..0d22b323502174376c92db9023299ea1be7f338f 100644
(file)
--- 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...