mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Like the comment says, do not insert cast instructions before phi nodes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22586 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
64fe58490d
commit
8105c76da4
@ -232,6 +232,10 @@ void LoopStrengthReduce::AnalyzeGetElementPtrUsers(GetElementPtrInst *GEP,
|
||||
else
|
||||
++InsertPt;
|
||||
}
|
||||
|
||||
// Do not insert casts into the middle of PHI node blocks.
|
||||
while (isa<PHINode>(InsertPt)) ++InsertPt;
|
||||
|
||||
BP = new CastInst(GEP->getOperand(0), UIntPtrTy,
|
||||
GEP->getOperand(0)->getName(), InsertPt);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user