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 | 3bf5512d871d06949d8be804080c246226825e11 (patch) | |
| tree | 8ec4ea695ab6485a845d7e3b65953376d3b935ca /llvm/lib/Transforms/Scalar | |
| parent | 8f3127c5b54f84d0185868936c7c681aadb7a63d (diff) | |
| download | bcm5719-llvm-3bf5512d871d06949d8be804080c246226825e11.tar.gz bcm5719-llvm-3bf5512d871d06949d8be804080c246226825e11.zip | |
Constant integer vectors may also be negated.
llvm-svn: 51476
Diffstat (limited to 'llvm/lib/Transforms/Scalar')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/InstructionCombining.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp index ce5f2397d22..d7f5ccf7884 100644 --- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/llvm/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; } |

