From: Dan Gohman Date: Tue, 27 May 2008 20:29:07 +0000 (+0000) Subject: Tidy up whitespace in ConstantRange::print output. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=7edd009efe6dda2a051f49709148e2cc42a83339;p=oota-llvm.git Tidy up whitespace in ConstantRange::print output. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51606 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/ConstantRange.cpp b/lib/Support/ConstantRange.cpp index 4a74d421163..0d22b323502 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...