Add obviously missing 'break' statement.

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

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) {
-- 
1.7.10

Reply via email to