diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-07-12 16:17:15 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-07-12 16:17:15 +0000 |
commit | 20217ac1248ad3d2a3cc1ddd75b86468ee8fc97c (patch) | |
tree | e9b1aa5c659d740c594b5537942b41acc314ba1f /gcc/c-parse.in | |
parent | 878a5794e087205c4072dbf4ade21eb07587de76 (diff) | |
download | gcc-20217ac1248ad3d2a3cc1ddd75b86468ee8fc97c.zip gcc-20217ac1248ad3d2a3cc1ddd75b86468ee8fc97c.tar.gz gcc-20217ac1248ad3d2a3cc1ddd75b86468ee8fc97c.tar.bz2 |
Warning fixes:
* c-decl.c (set_current_function_name_declared, anon_aggr_type_p,
lang_expand_stmt): Mark parameters with ATTRIBUTE_UNUSED.
* c-parse.in (stmt): Delete unused variables.
* convert.c (convert_to_vector): Likewise.
* gensupport.c (process_rtx): Declare attr as `rtvec' not `rtx'.
* tree.c (finish_vector_type): Prototype.
From-SVN: r34987
Diffstat (limited to 'gcc/c-parse.in')
-rw-r--r-- | gcc/c-parse.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-parse.in b/gcc/c-parse.in index 646183c..04e160d 100644 --- a/gcc/c-parse.in +++ b/gcc/c-parse.in @@ -1843,11 +1843,11 @@ stmt: lineno_labeled_stmt { expand_end_case ($3); } | BREAK ';' - { tree break_stmt = build_break_stmt (); + { build_break_stmt (); stmt_count++; genrtl_break_stmt (); } | CONTINUE ';' - { tree continue_stmt = build_continue_stmt (); + { build_continue_stmt (); stmt_count++; genrtl_continue_stmt (); } | RETURN ';' |