diff options
Diffstat (limited to 'lib/Analysis/ConstantRange.cpp')
-rw-r--r-- | lib/Analysis/ConstantRange.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/ConstantRange.cpp b/lib/Analysis/ConstantRange.cpp index 580ca01ac3..3b91c5bc7a 100644 --- a/lib/Analysis/ConstantRange.cpp +++ b/lib/Analysis/ConstantRange.cpp @@ -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... |