1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Tidy up whitespace in ConstantRange::print output.

llvm-svn: 51606
This commit is contained in:
Dan Gohman 2008-05-27 20:29:07 +00:00
parent 17e36d815e
commit 92d5dff525

View File

@ -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...