mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-25 00:24:26 +00:00
Fix PR1657
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42075 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -791,6 +791,14 @@ void LICM::FindPromotableValuesInLoop(
|
||||
break;
|
||||
}
|
||||
|
||||
// If GEP base is NULL then the calculated address used by Store or
|
||||
// Load instruction is invalid. Do not promote this value because
|
||||
// it may expose load and store instruction that are covered by
|
||||
// condition which may not yet folded.
|
||||
if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(V))
|
||||
if (isa<ConstantPointerNull>(GEP->getOperand(0)))
|
||||
PointerOk = false;
|
||||
|
||||
if (PointerOk) {
|
||||
const Type *Ty = cast<PointerType>(V->getType())->getElementType();
|
||||
AllocaInst *AI = new AllocaInst(Ty, 0, V->getName()+".tmp", FnStart);
|
||||
|
Reference in New Issue
Block a user