forked from OSchip/llvm-project
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:
parent
3b1dde63a2
commit
c3cfbf8677
|
@ -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()) &&
|
||||
|
|
Loading…
Reference in New Issue