Add missing break statement in PPCISelLowering

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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190720 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Hal Finkel 2013-09-13 20:09:02 +00:00
parent 94dc6540a8
commit 98bae99266

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