From 9ec7269fc58c675315ed37d71de36d596b9bd466 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 10 Apr 2010 08:26:45 +0000 Subject: [PATCH] sim: drop duplicate break statements in sim-fpu --- sim/common/ChangeLog | 4 ++++ sim/common/sim-fpu.c | 6 ------ 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index a40dbf86b4..89d238efe4 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,7 @@ +2010-04-10 Mike Frysinger + + * sim-fpu.c (sim_fpu_print_status): Remove duplicate break statements. + 2010-04-10 Mike Frysinger * sim-trace.c (save_data): Add const markings to "buf" argument. diff --git a/sim/common/sim-fpu.c b/sim/common/sim-fpu.c index 500a5f9018..ad25f323e1 100644 --- a/sim/common/sim-fpu.c +++ b/sim/common/sim-fpu.c @@ -2532,27 +2532,21 @@ sim_fpu_print_status (int status, case sim_fpu_status_invalid_sqrt: print (arg, "%sSQRT", prefix); break; - break; case sim_fpu_status_inexact: print (arg, "%sX", prefix); break; - break; case sim_fpu_status_overflow: print (arg, "%sO", prefix); break; - break; case sim_fpu_status_underflow: print (arg, "%sU", prefix); break; - break; case sim_fpu_status_invalid_div0: print (arg, "%s/", prefix); break; - break; case sim_fpu_status_rounded: print (arg, "%sR", prefix); break; - break; } i <<= 1; prefix = ","; -- 2.34.1