From 08cc64ebfe7d7026ad4f6d471a78427daf2ef167 Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Tue, 6 Jul 2004 19:24:47 +0000 Subject: [PATCH] It doesn't matter what the 2nd operand is; if the GEP has 2 operands and the first is a zero, we should leave it alone. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14648 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/DecomposeMultiDimRefs.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Transforms/Scalar/DecomposeMultiDimRefs.cpp b/lib/Transforms/Scalar/DecomposeMultiDimRefs.cpp index bcd0f78aba2..72e537a7dcd 100644 --- a/lib/Transforms/Scalar/DecomposeMultiDimRefs.cpp +++ b/lib/Transforms/Scalar/DecomposeMultiDimRefs.cpp @@ -83,8 +83,7 @@ static inline bool isZeroConst (Value *V) { bool llvm::DecomposeArrayRef(GetElementPtrInst* GEP) { if (GEP->getNumIndices() < 2 || (GEP->getNumIndices() == 2 - && isZeroConst(GEP->getOperand(1)) - && isa(GEP->getOperand(2)))) { + && isZeroConst(GEP->getOperand(1)))) { DEBUG (std::cerr << "DecomposeArrayRef: Skipping " << *GEP); return false; } else { -- 2.34.1