diff options
author | Chris Lattner <sabre@nondot.org> | 2005-05-01 04:42:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-05-01 04:42:15 +0000 |
commit | 9fb25db11ef2d29bcfb413c0f896f55fe812979a (patch) | |
tree | 421dc66690c29024bffefd0f280590c3f303b6b7 /lib/Transforms | |
parent | f05fd0893efc71a24c9c242be2e0251a622533d7 (diff) |
Implement getelementptr.ll:test11
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21647 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 6b958f2c77..5fe95540de 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -2879,6 +2879,22 @@ Instruction *InstCombiner::visitSetCondInst(SetCondInst &I) { if (Constant *RHSC = dyn_cast<Constant>(Op1)) { if (Instruction *LHSI = dyn_cast<Instruction>(Op0)) switch (LHSI->getOpcode()) { + case Instruction::GetElementPtr: + if (RHSC->isNullValue()) { + // Transform setcc GEP P, int 0, int 0, int 0, null -> setcc P, null + bool isAllZeros = true; + for (unsigned i = 1, e = LHSI->getNumOperands(); i != e; ++i) + if (!isa<Constant>(LHSI->getOperand(i)) || + !cast<Constant>(LHSI->getOperand(i))->isNullValue()) { + isAllZeros = false; + break; + } + if (isAllZeros) + return new SetCondInst(I.getOpcode(), LHSI->getOperand(0), + Constant::getNullValue(LHSI->getOperand(0)->getType())); + } + break; + case Instruction::PHI: if (Instruction *NV = FoldOpIntoPhi(I)) return NV; |