diff mbox

[21/22] ppc: add missing break

Message ID CAAu8pHuxr=85mh=XTb_8di+MBUejzb+PV2VA=PwnZDW2Wje6tA@mail.gmail.com
State New
Headers show

Commit Message

Blue Swirl April 22, 2012, 1:26 p.m. UTC
Add obviously missing 'break' statement.

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
---
 target-ppc/fpu_helper.c |    1 +
 1 file changed, 1 insertion(+)
diff mbox

Patch

diff --git a/target-ppc/fpu_helper.c b/target-ppc/fpu_helper.c
index d90636f..9d67926 100644
--- a/target-ppc/fpu_helper.c
+++ b/target-ppc/fpu_helper.c
@@ -310,6 +310,7 @@  void helper_fpscr_setbit(CPUPPCState *env, uint32_t bit)
             if (fpscr_ve) {
                 goto raise_ve;
             }
+            break;
         case FPSCR_OX:
             env->fpscr |= 1 << FPSCR_FX;
             if (fpscr_oe) {