[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH 21/22] ppc: add missing break
From: |
Blue Swirl |
Subject: |
[Qemu-ppc] [PATCH 21/22] ppc: add missing break |
Date: |
Sun, 22 Apr 2012 13:26:15 +0000 |
Add obviously missing 'break' statement.
Signed-off-by: Blue Swirl <address@hidden>
---
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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Qemu-ppc] [PATCH 21/22] ppc: add missing break,
Blue Swirl <=