diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2008-05-23 04:54:45 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2008-05-23 04:54:45 +0000 |
commit | 58867bc6046dd41b792b53317d35f6e222620cc8 (patch) | |
tree | c7f97792d3b947c7216acc810a5aacc05b3c1f8d /lib | |
parent | 4d474cd5f18c35ac4882b48790b385397909792e (diff) | |
download | external_llvm-58867bc6046dd41b792b53317d35f6e222620cc8.zip external_llvm-58867bc6046dd41b792b53317d35f6e222620cc8.tar.gz external_llvm-58867bc6046dd41b792b53317d35f6e222620cc8.tar.bz2 |
Constant integer vectors may also be negated.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51476 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index ce5f239..d7f5ccf 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -550,6 +550,11 @@ static inline Value *dyn_castNegVal(Value *V) { // Constants can be considered to be negated values if they can be folded. if (ConstantInt *C = dyn_cast<ConstantInt>(V)) return ConstantExpr::getNeg(C); + + if (ConstantVector *C = dyn_cast<ConstantVector>(V)) + if (C->getType()->getElementType()->isInteger()) + return ConstantExpr::getNeg(C); + return 0; } |