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 3b1dde63a2
commit c3cfbf8677
1 changed files with 2 additions and 0 deletions

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()) &&