forked from OSchip/llvm-project
Add FastISel support for PHINodes. Machine PHI nodes
are not yet updated properly, but that's a separate task. llvm-svn: 55187
This commit is contained in:
parent
ed86f689cb
commit
a2292c0d34
|
@ -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…
Reference in New Issue