aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-08-07 01:17:47 +0000
committerDan Gohman <gohman@apple.com>2010-08-07 01:17:47 +0000
commitfc8b58e1d435c248fee873e5d58674cc57074927 (patch)
tree1a72ebc2dacd67cc156ff74be736c2ce56f0e96b /include/llvm
parent12376a8df60e1ebd6e6e194cb5ecb0279a2d74a8 (diff)
downloadexternal_llvm-fc8b58e1d435c248fee873e5d58674cc57074927.zip
external_llvm-fc8b58e1d435c248fee873e5d58674cc57074927.tar.gz
external_llvm-fc8b58e1d435c248fee873e5d58674cc57074927.tar.bz2
Delete this explicit assignment operator; it's equivalent to
the implicit one. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110498 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Support/ConstantRange.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/Support/ConstantRange.h b/include/llvm/Support/ConstantRange.h
index 1187cfd..d767bd3 100644
--- a/include/llvm/Support/ConstantRange.h
+++ b/include/llvm/Support/ConstantRange.h
@@ -142,12 +142,6 @@ public:
///
APInt getSignedMin() const;
- /// operator= - Copy one ConstantRange over another.
- void operator=(const ConstantRange &CR) {
- Lower = CR.Lower;
- Upper = CR.Upper;
- }
-
/// operator== - Return true if this range is equal to another range.
///
bool operator==(const ConstantRange &CR) const {