ra-debug.c (ra_print_rtx): Add break's to case legs.
authorPat Haugen <pthaugen@us.ibm.com>
Thu, 15 Apr 2004 17:29:40 +0000 (17:29 +0000)
committerDavid Edelsohn <dje@gcc.gnu.org>
Thu, 15 Apr 2004 17:29:40 +0000 (13:29 -0400)
2004-04-15  Pat Haugen  <pthaugen@us.ibm.com>

        * ra-debug.c (ra_print_rtx): Add break's to case legs.

From-SVN: r80725

gcc/ChangeLog
gcc/ra-debug.c

index a26dba388089e1f3ea9a583946a457100676c11c..8dfbfe95554402cb79340b4d5e7634cb21753bd5 100644 (file)
@@ -1,3 +1,7 @@
+2004-04-15  Pat Haugen  <pthaugen@us.ibm.com>
+
+       * ra-debug.c (ra_print_rtx): Add break's to case legs.
+
 2004-04-14  James E Wilson  <wilson@specifixinc.com>
 
        * Makefile.in (fixinc.sh): Set WARN_CFLAGS to empty string.
index 4936898ae8b06b9cfdf4625ed94de25208d56dc4..16d2a589617fa74dbdb54b61e1f39851240c164d 100644 (file)
@@ -495,20 +495,25 @@ ra_print_rtx (FILE *file, rtx x, int with_pn)
   switch (GET_RTX_CLASS (code))
     {
       case RTX_UNARY:
-        ra_print_rtx_1op (file, x);
+       ra_print_rtx_1op (file, x);
+       break;
       case RTX_BIN_ARITH:
       case RTX_COMM_ARITH:
       case RTX_COMPARE:
       case RTX_COMM_COMPARE:
-        ra_print_rtx_2op (file, x);
+       ra_print_rtx_2op (file, x);
+       break;
       case RTX_TERNARY:
       case RTX_BITFIELD_OPS:
-        ra_print_rtx_3op (file, x);
+       ra_print_rtx_3op (file, x);
+       break;
       case RTX_OBJ:
       case RTX_CONST_OBJ:
-        ra_print_rtx_object (file, x);
+       ra_print_rtx_object (file, x);
+       break;
       default:
-        print_inline_rtx (file, x, 0);
+       print_inline_rtx (file, x, 0);
+       break;
     }
 }