diff options
author | Anatoly Sokolov <aesok@post.ru> | 2007-04-03 01:43:53 +0400 |
---|---|---|
committer | Anatoly Sokolov <aesok@gcc.gnu.org> | 2007-04-03 01:43:53 +0400 |
commit | c8bbabf282817c068f44b944a467ac71e67259e0 (patch) | |
tree | 6dd21af7ef7613a6b7e0322a642fe8ebbdedee97 | |
parent | 60e656f58b02e527aae36c9ca3b726a93aedc576 (diff) | |
download | gcc-c8bbabf282817c068f44b944a467ac71e67259e0.zip gcc-c8bbabf282817c068f44b944a467ac71e67259e0.tar.gz gcc-c8bbabf282817c068f44b944a467ac71e67259e0.tar.bz2 |
re PR target/31137 (missing "break" in switch for MULT in avr_rtx_costs)
PR target/31137
* config/avr/avr.c (avr_rtx_costs): Add missing 'break' statements.
From-SVN: r123437
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/avr/avr.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9fbca6c..f565da5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-04-02 Anatoly Sokolov <aesok@post.ru> + + PR target/31137 + * config/avr/avr.c (avr_rtx_costs): Add missing 'break' statements. + 2007-04-02 Dave Korn <dave.korn@artimi.com> * doc/tm.texi (FUNCTION_MODE): Update and extend documentation. diff --git a/gcc/config/avr/avr.c b/gcc/config/avr/avr.c index 6be936b..226ab0f 100644 --- a/gcc/config/avr/avr.c +++ b/gcc/config/avr/avr.c @@ -4997,6 +4997,7 @@ avr_rtx_costs (rtx x, int code, int outer_code ATTRIBUTE_UNUSED, int *total) *total = COSTS_N_INSNS (AVR_MEGA ? 2 : 1); else return false; + break; case HImode: if (AVR_HAVE_MUL) @@ -5005,6 +5006,7 @@ avr_rtx_costs (rtx x, int code, int outer_code ATTRIBUTE_UNUSED, int *total) *total = COSTS_N_INSNS (AVR_MEGA ? 2 : 1); else return false; + break; default: return false; |