diff options
author | Chris Lattner <sabre@nondot.org> | 2003-07-23 15:22:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-07-23 15:22:26 +0000 |
commit | c07736a397012499e337c994f7f952b07c709544 (patch) | |
tree | e7ff1fb8eee2ca15a8f6edd4e537aecf7fe6be56 /lib/Support/ConstantRange.cpp | |
parent | c8bf87af3efe766440d0df259a038a0b6998e6e9 (diff) | |
download | external_llvm-c07736a397012499e337c994f7f952b07c709544.zip external_llvm-c07736a397012499e337c994f7f952b07c709544.tar.gz external_llvm-c07736a397012499e337c994f7f952b07c709544.tar.bz2 |
Simplify code by using ConstantInt::getRawValue instead of checking to see
whether the constant is signed or unsigned, then casting
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7252 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/ConstantRange.cpp')
-rw-r--r-- | lib/Support/ConstantRange.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/Support/ConstantRange.cpp b/lib/Support/ConstantRange.cpp index b7ef5e0..c9d8ae6 100644 --- a/lib/Support/ConstantRange.cpp +++ b/lib/Support/ConstantRange.cpp @@ -126,10 +126,7 @@ uint64_t ConstantRange::getSetSize() const { // Simply subtract the bounds... Constant *Result = *(Constant*)Upper - *(Constant*)Lower; assert(Result && "Subtraction of constant integers not implemented?"); - if (getType()->isSigned()) - return (uint64_t)cast<ConstantSInt>(Result)->getValue(); - else - return cast<ConstantUInt>(Result)->getValue(); + return cast<ConstantInt>(Result)->getRawValue(); } |