2003-09-09 Dave Brolley <brolley@redhat.com>
authorDave Brolley <brolley@redhat.com>
Tue, 9 Sep 2003 22:28:33 +0000 (22:28 +0000)
committerDave Brolley <brolley@redhat.com>
Tue, 9 Sep 2003 22:28:33 +0000 (22:28 +0000)
        * frv.c (do_media_average): Select machine using a switch.

sim/frv/ChangeLog
sim/frv/frv.c

index 91f636a068c1e89d535b50bb421c44164231ea67..34d685cd47c6592c9e4191785b3f63b4cc0e371b 100644 (file)
@@ -1,3 +1,7 @@
+2003-09-09  Dave Brolley  <brolley@redhat.com>
+
+       * frv.c (do_media_average): Select machine using a switch.
+
 2003-09-08  Dave Brolley  <brolley@redhat.com>
 
        On behalf of Doug Evans <dje@sebabeach.org>
index a13af6b5ecd98ec11f190d4bfb8897274c2bb5e5..bd3220dcacf3ae6d52ced6eda4d4f12956022c48 100644 (file)
@@ -1,5 +1,5 @@
 /* frv simulator support code
-   Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
    Contributed by Red Hat.
 
 This file is part of the GNU simulators.
@@ -1049,14 +1049,17 @@ do_media_average (SIM_CPU *current_cpu, HI arg1, HI arg2)
   SIM_DESC sd = CPU_STATE (current_cpu);
   SI sum = (arg1 + arg2);
   HI result = sum >> 1;
+  int rounding_value;
 
   /* On fr400, check the rounding mode.  On other machines rounding is always
      toward negative infinity and the result is already correctly rounded.  */
-  if (STATE_ARCHITECTURE (sd)->mach == bfd_mach_fr400)
+  switch (STATE_ARCHITECTURE (sd)->mach)
     {
+      /* Need to check rounding mode. */
+    case bfd_mach_fr400:
       /* Check whether rounding will be required.  Rounding will be required
         if the sum is an odd number.  */
-      int rounding_value = sum & 1;
+      rounding_value = sum & 1;
       if (rounding_value)
        {
          USI msr0 = GET_MSR (0);
@@ -1098,6 +1101,9 @@ do_media_average (SIM_CPU *current_cpu, HI arg1, HI arg2)
                ++result;
            }
        }
+      break;
+    default:
+      break;
     }
 
   return result;
This page took 0.037439 seconds and 4 git commands to generate.