properly mark vector selects as expanded to select_cc

llvm-svn: 27544
This commit is contained in:
Chris Lattner 2006-04-08 22:59:15 +00:00
parent 0a3d1bbca4
commit 3a68f3c3ca
1 changed files with 4 additions and 0 deletions
llvm/lib/Target/PowerPC

View File

@ -87,6 +87,10 @@ PPCTargetLowering::PPCTargetLowering(TargetMachine &TM)
setOperationAction(ISD::SELECT, MVT::i32, Expand);
setOperationAction(ISD::SELECT, MVT::f32, Expand);
setOperationAction(ISD::SELECT, MVT::f64, Expand);
setOperationAction(ISD::SELECT, MVT::v4f32, Expand);
setOperationAction(ISD::SELECT, MVT::v4i32, Expand);
setOperationAction(ISD::SELECT, MVT::v8i16, Expand);
setOperationAction(ISD::SELECT, MVT::v16i8, Expand);
// PowerPC wants to turn select_cc of FP into fsel when possible.
setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);