mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
the pain isn't gone unless the phinodes are spilled too
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24288 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
85eac0d941
commit
fa25e48412
@ -38,7 +38,8 @@ namespace {
|
||||
BasicBlock* bb = i->getParent();
|
||||
for(Value::use_iterator ii = i->use_begin(), ie = i->use_end();
|
||||
ii != ie; ++ii)
|
||||
if (cast<Instruction>(*ii)->getParent() != bb)
|
||||
if (cast<Instruction>(*ii)->getParent() != bb ||
|
||||
isa<PHINode>(*ii))
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user