X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FSupport%2FConstantRange.cpp;h=0d22b323502174376c92db9023299ea1be7f338f;hb=73b43b9b549a75fb0015c825df68abd95705a67c;hp=4a74d4211638d8001d9e802018ce04d6dccaf4b1;hpb=4ee451de366474b9c228b4e5fa573795a715216d;p=oota-llvm.git 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...