Add FMA to switch statement in VectorLegalizer::LegalizeOp so that it can be expanded when it isn't legal.

llvm-svn: 162894
This commit is contained in:
Craig Topper 2012-08-30 07:34:22 +00:00
parent c8f5d77e75
commit 2da13f9ef8
1 changed files with 1 additions and 0 deletions

View File

@ -220,6 +220,7 @@ SDValue VectorLegalizer::LegalizeOp(SDValue Op) {
case ISD::FRINT:
case ISD::FNEARBYINT:
case ISD::FFLOOR:
case ISD::FMA:
case ISD::SIGN_EXTEND_INREG:
QueryType = Node->getValueType(0);
break;