summaryrefslogtreecommitdiff
path: root/gcc/ra-debug.c
diff options
context:
space:
mode:
authordje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>2004-04-15 17:29:40 +0000
committerdje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>2004-04-15 17:29:40 +0000
commit2985dd16cf3aebea94d9903e8ec9b2177cea207d (patch)
tree1eb21e59b940de94d19bdec1888d773d02653458 /gcc/ra-debug.c
parentb5bed5a5917935f1ba0fae40dd8359d46b3d38fb (diff)
downloadgcc-2985dd16cf3aebea94d9903e8ec9b2177cea207d.tar.gz
2004-04-15 Pat Haugen <pthaugen@us.ibm.com>
* ra-debug.c (ra_print_rtx): Add break's to case legs. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@80725 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ra-debug.c')
-rw-r--r--gcc/ra-debug.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/gcc/ra-debug.c b/gcc/ra-debug.c
index 4936898ae8b..16d2a589617 100644
--- a/gcc/ra-debug.c
+++ b/gcc/ra-debug.c
@@ -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;
}
}