diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a26dba388089..8dfbfe955544 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-04-15 Pat Haugen + + * ra-debug.c (ra_print_rtx): Add break's to case legs. + 2004-04-14 James E Wilson * Makefile.in (fixinc.sh): Set WARN_CFLAGS to empty string. diff --git a/gcc/ra-debug.c b/gcc/ra-debug.c index 4936898ae8b0..16d2a589617f 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; } }