summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorLeon Alrae <leon.alrae@imgtec.com>2014-12-10 15:39:42 +0000
committerLeon Alrae <leon.alrae@imgtec.com>2014-12-16 12:45:20 +0000
commit00fb4a118142650e7fa3d5007b197bc11fec6ea9 (patch)
treee3177ae3aaf701956f036e1537c297c55ea3a68f
parent66991d1103562591eba6b801049720976317fe61 (diff)
downloadfocaccia-qemu-00fb4a118142650e7fa3d5007b197bc11fec6ea9.tar.gz
focaccia-qemu-00fb4a118142650e7fa3d5007b197bc11fec6ea9.zip
target-mips: convert single case switch into if statement
Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--target-mips/translate.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/target-mips/translate.c b/target-mips/translate.c
index f65ed84b6b..1205909f78 100644
--- a/target-mips/translate.c
+++ b/target-mips/translate.c
@@ -1882,10 +1882,8 @@ static inline void gen_r6_cmp_ ## fmt(DisasContext * ctx, int n,        \
 {                                                                       \
     TCGv_i ## bits fp0 = tcg_temp_new_i ## bits();                      \
     TCGv_i ## bits fp1 = tcg_temp_new_i ## bits();                      \
-    switch (ifmt) {                                                     \
-    case FMT_D:                                                         \
+    if (ifmt == FMT_D) {                                                \
         check_cp1_registers(ctx, fs | ft | fd);                         \
-        break;                                                          \
     }                                                                   \
     gen_ldcmp_fpr ## bits(ctx, fp0, fs);                                \
     gen_ldcmp_fpr ## bits(ctx, fp1, ft);                                \