mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 02:31:26 +00:00
Remove the special-case for constants in PHI nodes; it's not really
helpful, and it didn't correctly handle the case of constants input to PHIs for backedges. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82462 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8b2bc3d574
commit
5ee98e8713
@ -60,9 +60,6 @@ bool CodeGenLICM::runOnLoop(Loop *L, LPPassManager &) {
|
||||
for (BasicBlock::iterator BBI = BB->begin(), BBE = BB->end();
|
||||
BBI != BBE; ++BBI) {
|
||||
Instruction *I = BBI;
|
||||
// Don't bother hoisting constants out of loop-header phi nodes.
|
||||
if (BB == L->getHeader() && isa<PHINode>(I))
|
||||
continue;
|
||||
// TODO: For now, skip all intrinsic instructions, because some of them
|
||||
// can require their operands to be constants, and we don't want to
|
||||
// break that.
|
||||
|
Loading…
x
Reference in New Issue
Block a user