diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-03-12 17:13:24 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-03-12 17:13:24 +0000 |
commit | 6d4b04ca0de2ef2ea731b113666e5b3d1b0353f2 (patch) | |
tree | 46e462e2cad9662691fedffe68c7e8bd046c4eb8 /gcc/java/parse.c | |
parent | 23289b043684744e907d431860541bae922cc94e (diff) | |
download | gcc-6d4b04ca0de2ef2ea731b113666e5b3d1b0353f2.tar.gz |
Warning fixes:
* constants.c (find_class_or_string_constant): Cast variable `j'
to a `jword' when comparing against one.
* expr.c (java_lang_expand_expr): Remove unused variables
`has_finally_p' and `op0'.
* gjavah.c (print_field_info): Cast a value to jint when comparing
against one. Likewise for a jlong.
(add_namelet): Likewise cast a `sizeof' to an int when comparing
against a signed quantity.
* jcf-dump.c (print_signature_type): Remove unused variable `digit'.
(print_signature): Don't needlessly dereference variable `str'
* jcf-reader.c (get_attribute): Mark variables `max_stack' and
`max_locals' with ATTRIBUTE_UNUSED.
(jcf_parse_class): Likewise for variable `index'.
* parse.h (reverse_jdep_list): Remove static prototype.
* parse.y (build_jump_to_finally): Remove prototype and definition.
(reverse_jdep_list): Add static prototype.
* typeck.c (convert_ieee_real_to_integer): Remove unused variables
`assignment' and `expr_decl'.
* verify.c (verify_jvm_instructions): Remove unused label `bad_ldc'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25731 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/parse.c')
-rw-r--r-- | gcc/java/parse.c | 47 |
1 files changed, 5 insertions, 42 deletions
diff --git a/gcc/java/parse.c b/gcc/java/parse.c index 6579a3d807c..485ed0e9665 100644 --- a/gcc/java/parse.c +++ b/gcc/java/parse.c @@ -5,13 +5,6 @@ #define YYBISON 1 /* Identify Bison output. */ -#define yyparse java_parse -#define yylex java_lex -#define yyerror java_error -#define yylval java_lval -#define yychar java_char -#define yydebug java_debug -#define yynerrs java_nerrs #define PLUS_TK 258 #define MINUS_TK 259 #define MULT_TK 260 @@ -275,7 +268,6 @@ static tree string_constant_concatenation PROTO ((tree, tree)); static tree build_string_concatenation PROTO ((tree, tree)); static tree patch_string_cst PROTO ((tree)); static tree patch_string PROTO ((tree)); -static tree build_jump_to_finally PROTO ((tree, tree, tree, tree)); static tree build_try_statement PROTO ((int, tree, tree)); static tree build_try_finally_statement PROTO ((int, tree, tree)); static tree patch_try_statement PROTO ((tree)); @@ -315,6 +307,7 @@ static char *purify_type_name PROTO ((char *)); static tree patch_initialized_static_field PROTO ((tree)); static tree fold_constant_for_init PROTO ((tree, tree)); static tree strip_out_static_field_access_decl PROTO ((tree)); +static jdeplist *reverse_jdep_list PROTO ((struct parser_ctxt *)); /* Number of error found so far. */ int java_error_count; @@ -2217,7 +2210,7 @@ static const short yycheck[] = { 3, #define YYPURE 1 /* -*-C-*- Note some compilers choke on comments on `#line' lines. */ -#line 3 "/usr/share/misc/bison.simple" +#line 3 "/usr/local/gnu/share/bison.simple" /* Skeleton output parser for bison, Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc. @@ -2234,7 +2227,7 @@ static const short yycheck[] = { 3, You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. @@ -2410,7 +2403,7 @@ __yy_memcpy (char *to, char *from, int count) #endif #endif -#line 196 "/usr/share/misc/bison.simple" +#line 196 "/usr/local/gnu/share/bison.simple" /* The user can define YYPARSE_PARAM as the name of an argument to be passed into yyparse. The argument should have type void *. @@ -4675,7 +4668,7 @@ case 493: break;} } /* the action file gets copied in in place of this dollarsign */ -#line 498 "/usr/share/misc/bison.simple" +#line 498 "/usr/local/gnu/share/bison.simple" yyvsp -= yylen; yyssp -= yylen; @@ -13313,36 +13306,6 @@ patch_switch_statement (node) /* 14.18 The try statement */ -/* Wrap BLOCK around a LABELED_BLOCK, set DECL to the newly generated - exit labeld and issue a jump to FINALLY_LABEL: - - LABELED_BLOCK - BLOCK - <orignal_statments> - DECL = &LABEL_DECL - GOTO_EXPR - FINALLY_LABEL - LABEL_DECL */ - -static tree -build_jump_to_finally (block, decl, finally_label, type) - tree block, decl, finally_label, type; -{ - tree stmt; - tree new_block = build (LABELED_BLOCK_EXPR, type, - create_label_decl (generate_name ()), block); - - stmt = build (MODIFY_EXPR, void_type_node, decl, - build_address_of (LABELED_BLOCK_LABEL (new_block))); - TREE_SIDE_EFFECTS (stmt) = 1; - CAN_COMPLETE_NORMALLY (stmt) = 1; - add_stmt_to_block (block, type, stmt); - stmt = build (GOTO_EXPR, void_type_node, finally_label); - TREE_SIDE_EFFECTS (stmt) = 1; - add_stmt_to_block (block, type, stmt); - return new_block; -} - static tree build_try_statement (location, try_block, catches) int location; |