aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Support/ConstantRange.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-11-17 20:23:08 +0000
committerDan Gohman <gohman@apple.com>2010-11-17 20:23:08 +0000
commit7c0fd8eb724a7228a6cf7e3e5487614c25202a91 (patch)
tree4bee2f4508f0afb520787bd42710bb1cb3968ba7 /include/llvm/Support/ConstantRange.h
parentc4af4638dfdab0dc3b6257276cfad2ee45053060 (diff)
Fix ScalarEvolution's range memoization to avoid using a
default ctor with ConstantRange. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119550 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/ConstantRange.h')
-rw-r--r--include/llvm/Support/ConstantRange.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/Support/ConstantRange.h b/include/llvm/Support/ConstantRange.h
index c84e64ada9..792b4107b1 100644
--- a/include/llvm/Support/ConstantRange.h
+++ b/include/llvm/Support/ConstantRange.h
@@ -47,9 +47,6 @@ public:
///
explicit ConstantRange(uint32_t BitWidth, bool isFullSet = true);
- /// Default constructor that creates an uninitialized ConstantRange.
- ConstantRange() {}
-
/// Initialize a range to hold the single specified value.
///
ConstantRange(const APInt &Value);