diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1997-12-22 09:31:41 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-12-22 02:31:41 -0700 |
commit | 9e04c65a52d300b345d4136d95c93d49aef54781 (patch) | |
tree | b605e199d2af799e1fad08d6fc58f9a34350d336 /gcc/cse.c | |
parent | 04029ca2457cdda7ac485532588705a219b2f980 (diff) | |
download | gcc-9e04c65a52d300b345d4136d95c93d49aef54781.zip gcc-9e04c65a52d300b345d4136d95c93d49aef54781.tar.gz gcc-9e04c65a52d300b345d4136d95c93d49aef54781.tar.bz2 |
cse.c (rtx_cost): Add default case in enumeration switch.
* cse.c (rtx_cost): Add default case in enumeration switch.
* fix-header.c (recognized_macro): Likewise.
(recognized_extern): Likewise.
(write_rbrac): Likewise.
* objc/objc-act.c (encode_aggregate): Likewise.
(gen_declarator): Likewise.
(gen_declspecs): Likewise.
From-SVN: r17186
Diffstat (limited to 'gcc/cse.c')
-rw-r--r-- | gcc/cse.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -746,6 +746,9 @@ rtx_cost (x, outer_code) RTX_COSTS (x, code, outer_code); #endif CONST_COSTS (x, code, outer_code); + + default: + break; } /* Sum the costs of the sub-rtx's, plus cost of this operation, |