PPC doesn't have SCALAR_TO_VECTOR

llvm-svn: 26865
This commit is contained in:
Chris Lattner 2006-03-19 06:17:19 +00:00
parent 5b595af956
commit b1ee9c7e24
1 changed files with 3 additions and 0 deletions

View File

@ -183,6 +183,9 @@ PPCTargetLowering::PPCTargetLowering(TargetMachine &TM)
// the ones we do!
setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Expand);
setOperationAction(ISD::BUILD_VECTOR, MVT::v4i32, Expand);
setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Expand);
setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Expand);
}
setSetCCResultContents(ZeroOrOneSetCCResult);