diff options
author | Chris Lattner <sabre@nondot.org> | 2004-07-15 01:29:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-07-15 01:29:12 +0000 |
commit | cae777bb4f41b496bc99231b4df79bdaa33d4e08 (patch) | |
tree | 7756f71ee880b1efb728b16455fbdddfe50061b0 /llvm/lib/Support/ConstantRange.cpp | |
parent | 4bbd40974912f1619c850ea3aa3a706f11764e8a (diff) | |
download | bcm5719-llvm-cae777bb4f41b496bc99231b4df79bdaa33d4e08.tar.gz bcm5719-llvm-cae777bb4f41b496bc99231b4df79bdaa33d4e08.zip |
Bug fixes for PR341
llvm-svn: 14838
Diffstat (limited to 'llvm/lib/Support/ConstantRange.cpp')
-rw-r--r-- | llvm/lib/Support/ConstantRange.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/ConstantRange.cpp b/llvm/lib/Support/ConstantRange.cpp index 580ca01ac39..3b91c5bc7a0 100644 --- a/llvm/lib/Support/ConstantRange.cpp +++ b/llvm/lib/Support/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... |