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 d38b712ee0
commit e3a6a18364
1 changed files with 1 additions and 1 deletions

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