From 5ce13bce4c31cc84cc6952e360335c714250e2be Mon Sep 17 00:00:00 2001 From: ghazi Date: Sat, 6 Mar 1999 08:35:49 +0000 Subject: * Makefile.in (jcf-parse.o): Depend on $(PARSE_H). (parse-scan.o): Depend on toplev.h. * class.c (make_method_value): Add prototype. Make it static. Remove unused second argument, caller changed. * expr.c (java_lang_expand_expr): Remove unused variable `return_label'. * java-tree.h: Don't prototype find_in_current_zip. Add prototypes for verify_constant_pool, start_java_method, end_java_method, give_name_to_locals, expand_byte_code, open_in_zip, set_constant_value, find_constant1, find_constant2, find_utf8_constant, find_string_constant, find_class_constant, find_fieldref_index, find_methodref_index, write_constant_pool, count_constant_pool_bytes and encode_newarray_type. * jcf-dump.c: Remove unused variable `LONG_temp'. * jcf-parse.c: Include parse.h. (jcf_parse_source): Remove unused parameter, all callers changed. (jcf_figure_file_type): Add static prototype. (find_in_current_zip): Likewise. Also remove unused parameter, all callers changed. (read_class): Initialize variable `saved_pos'. * jcf-reader.c (jcf_parse_preamble): Mark variables `minor_version' and `major_version' with ATTRIBUTE_UNUSED. * lex.c (java_is_eol): Wrap prototype and definition in !JC1_LITE. (java_init_lex): Wrap variable `java_lang_imported' in !JC1_LITE. (java_parse_doc_section): Initialize variable `seen_star'. (java_lex): Wrap variable `number_beginning' in !JC1_LITE. (java_lex_error): Mark parameters `msg' and `forward' with ATTRIBUTE_UNUSED. (java_get_line_col): Mark parameters `filename' and `line' with ATTRIBUTE_UNUSED. * parse-scan.y: Include toplev.h. (yyerror): Mark parameter `msg' with ATTRIBUTE_UNUSED. * parse.h: use `struct JCF', not plain `JCF'. (java_parser_context_save_global, java_expand_classes java_parser_context_restore_global, java_parse): Add prototypes. * typeck.c (convert_ieee_real_to_integer): Remove unused variable `node'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25616 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/java/parse.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'gcc/java/parse.h') diff --git a/gcc/java/parse.h b/gcc/java/parse.h index fa6b338ebd6..5326669842f 100644 --- a/gcc/java/parse.h +++ b/gcc/java/parse.h @@ -594,7 +594,7 @@ struct parser_ctxt { tree current_class; /* Current class */ tree current_function_decl; /* Current function decl, save/restore */ - JCF *current_jcf; /* CU jcf */ + struct JCF *current_jcf; /* CU jcf */ int prevent_ese; /* Prevent expression statement error */ int class_err; /* Flag to report certain errors */ @@ -652,8 +652,11 @@ extern tree do_resolve_class PROTO ((tree, tree, tree)); void java_push_parser_context PROTO ((void)); void java_pop_parser_context PROTO ((int)); void java_init_lex PROTO ((void)); +extern void java_parser_context_save_global PROTO ((void)); +extern void java_parser_context_restore_global PROTO ((void)); int yyparse PROTO ((void)); +extern int java_parse PROTO ((void)); int yylex (); void yyerror PROTO ((char *)); - +extern void java_expand_classes PROTO ((void)); #endif -- cgit v1.2.3