mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-14 17:34:41 +00:00
Scale 1 is always ok.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35407 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
caaf69107e
commit
7aff11a1ed
@ -4137,7 +4137,7 @@ static bool SinkInvariantGEPIndex(BinaryOperator *BinOp,
|
|||||||
int64_t Cst = cast<ConstantInt>(BinOp->getOperand(1))->getSExtValue();
|
int64_t Cst = cast<ConstantInt>(BinOp->getOperand(1))->getSExtValue();
|
||||||
// e.g. load (gep i32 * %P, (X+42)) => load (%P + X*4 + 168).
|
// e.g. load (gep i32 * %P, (X+42)) => load (%P + X*4 + 168).
|
||||||
if (TLI.isLegalAddressImmediate(Cst*Scale, UseTy) &&
|
if (TLI.isLegalAddressImmediate(Cst*Scale, UseTy) &&
|
||||||
TLI.isLegalAddressScale(Scale, UseTy)) {
|
(Scale == 1 || TLI.isLegalAddressScale(Scale, UseTy))) {
|
||||||
DestBBs.insert(GEPIBB);
|
DestBBs.insert(GEPIBB);
|
||||||
MadeChange = true;
|
MadeChange = true;
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user