Add missing break statement in PPCISelLowering
authorHal Finkel <hfinkel@anl.gov>
Fri, 13 Sep 2013 20:09:02 +0000 (20:09 +0000)
committerHal Finkel <hfinkel@anl.gov>
Fri, 13 Sep 2013 20:09:02 +0000 (20:09 +0000)
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

lib/Target/PowerPC/PPCISelLowering.cpp

index d042ed0147c9abb3d225b81d3355b5acefc794e3..ae046f0b7af033d03cb1fbbb455a6729f73a9799 100644 (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()) &&