From: Chris Lattner Date: Wed, 11 Apr 2007 16:17:12 +0000 (+0000) Subject: Fix incorrect fall-throughs in addr mode code. This fixes CodeGen/ARM/arm-negative... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e11529438cd825935410750881f6dd6b04806db2;p=oota-llvm.git Fix incorrect fall-throughs in addr mode code. This fixes CodeGen/ARM/arm-negative-stride.ll git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35909 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMISelLowering.cpp b/lib/Target/ARM/ARMISelLowering.cpp index 6cefec9de31..219e4e14374 100644 --- a/lib/Target/ARM/ARMISelLowering.cpp +++ b/lib/Target/ARM/ARMISelLowering.cpp @@ -1386,13 +1386,13 @@ bool ARMTargetLowering::isLegalAddressingMode(const AddrMode &AM, if (Scale == 1) return true; // r + r << imm - if (!isPowerOf2_32(Scale & ~1)) - return false; + return isPowerOf2_32(Scale & ~1); case MVT::i16: // r + r if (((unsigned)AM.HasBaseReg + Scale) <= 2) return true; - + return false; + case MVT::isVoid: // Note, we allow "void" uses (basically, uses that aren't loads or // stores), because arm allows folding a scale into many arithmetic