Graphs that are part of equivalence sets can be multi-function SCC's
[oota-llvm.git] / lib / Analysis / ConstantRange.cpp
index 580ca01ac39bdf35d9fa812a888b2313c18f73f3..3b91c5bc7a06175bc4dc0036da0379964f997d3b 100644 (file)
@@ -322,7 +322,7 @@ ConstantRange ConstantRange::truncate(const Type *Ty) const {
 /// print - Print out the bounds to a stream...
 ///
 void ConstantRange::print(std::ostream &OS) const {
-  OS << "[" << Lower << "," << Upper << " )";
+  OS << "[" << *Lower << "," << *Upper << " )";
 }
 
 /// dump - Allow printing from a debugger easily...