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:
Dan Gohman 2008-08-22 17:37:48 +00:00
parent ed86f689cb
commit a2292c0d34
1 changed files with 5 additions and 0 deletions

View File

@ -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;