[LegalizeVectorOps] Add FSHL/FSHR to the list of vector operations that should be handled.

The FSHL/FSHR nodes are handled in the expand function, but they need to also be listed in the code that queries for the operation action too.

llvm-svn: 350490
This commit is contained in:
Craig Topper
2019-01-06 07:06:35 +00:00
parent a2685cd6dc
commit 57fc891c1b

View File

@@ -351,6 +351,8 @@ SDValue VectorLegalizer::LegalizeOp(SDValue Op) {
case ISD::SHL:
case ISD::SRA:
case ISD::SRL:
case ISD::FSHL:
case ISD::FSHR:
case ISD::ROTL:
case ISD::ROTR:
case ISD::BSWAP: