mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-23 20:29:30 +00:00
Add FastISel support for PHINodes. Machine PHI nodes
are not yet updated properly, but that's a separate task. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55187 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f87d6c02f5
commit
3b7753be2e
@ -210,6 +210,11 @@ FastISel::SelectInstructions(BasicBlock::iterator Begin,
|
||||
// Something more complicated. Halt "fast" selection and bail.
|
||||
return I;
|
||||
}
|
||||
|
||||
case Instruction::PHI:
|
||||
// PHI nodes are already emitted.
|
||||
break;
|
||||
|
||||
default:
|
||||
// Unhandled instruction. Halt "fast" selection and bail.
|
||||
return I;
|
||||
|
Loading…
x
Reference in New Issue
Block a user