Add missing break statement in PPCISelLowering

As it turns out, not a problem in practice, but it should be there.

llvm-svn: 190720
This commit is contained in:
Hal Finkel 2013-09-13 20:09:02 +00:00
parent 0411803c14
commit ac7ef3f74f

View File

@ -7321,6 +7321,8 @@ SDValue PPCTargetLowering::PerformDAGCombine(SDNode *N,
}
}
}
break;
case ISD::BSWAP:
// Turn BSWAP (LOAD) -> lhbrx/lwbrx.
if (ISD::isNON_EXTLoad(N->getOperand(0).getNode()) &&