From: Alexandre Petit-Bianco Date: Thu, 28 Mar 2002 23:40:21 +0000 (-0800) Subject: re PR java/4715 (Tree check failure in check_inner_circular_reference) X-Git-Tag: releases/gcc-3.3.0~6053 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=242747e538d40a168e112975e3298cac5eca21d5;p=thirdparty%2Fgcc.git re PR java/4715 (Tree check failure in check_inner_circular_reference) 2002-03-28 Alexandre Petit-Bianco Fix for PR java/4715: * jcf-parse.c (parse_source_file_3): New function. (read_class): Call it. (java_parse_file): Likewise. (http://gcc.gnu.org/ml/gcc-patches/2002-03/msg01917.html) From-SVN: r51534 --- diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index c1d3908a7119..c1206c46c122 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,10 @@ +2002-03-28 Alexandre Petit-Bianco + + Fix for PR java/4715: + * jcf-parse.c (parse_source_file_3): New function. + (read_class): Call it. + (java_parse_file): Likewise. + Thu Mar 28 13:22:22 CET 2002 Jan Hubicka * java/lang.c (java_init_options): Set flag_trapping_math to 0. diff --git a/gcc/java/jcf-parse.c b/gcc/java/jcf-parse.c index 00e8a4ff10a6..53e647cb2c63 100644 --- a/gcc/java/jcf-parse.c +++ b/gcc/java/jcf-parse.c @@ -96,6 +96,7 @@ static void parse_zip_file_entries PARAMS ((void)); static void process_zip_dir PARAMS ((FILE *)); static void parse_source_file_1 PARAMS ((tree, FILE *)); static void parse_source_file_2 PARAMS ((void)); +static void parse_source_file_3 PARAMS ((void)); static void parse_class_file PARAMS ((void)); static void set_source_filename PARAMS ((JCF *, int)); static void ggc_mark_jcf PARAMS ((void**)); @@ -550,6 +551,7 @@ read_class (name) fatal_io_error ("can't reopen %s", input_filename); parse_source_file_1 (file, finput); parse_source_file_2 (); + parse_source_file_3 (); if (fclose (finput)) fatal_io_error ("can't close %s", input_filename); } @@ -883,6 +885,12 @@ parse_source_file_2 () int save_error_count = java_error_count; java_complete_class (); /* Parse unsatisfied class decl. */ java_parse_abort_on_error (); +} + +static void +parse_source_file_3 () +{ + int save_error_count = java_error_count; java_check_circular_reference (); /* Check on circular references */ java_parse_abort_on_error (); java_fix_constructors (); /* Fix the constructors */ @@ -1132,6 +1140,13 @@ java_parse_file () input_filename = ctxp->filename; parse_source_file_2 (); } + + for (ctxp = ctxp_for_generation; ctxp; ctxp = ctxp->next) + { + input_filename = ctxp->filename; + parse_source_file_3 (); + } + for (node = current_file_list; node; node = TREE_CHAIN (node)) { input_filename = IDENTIFIER_POINTER (TREE_VALUE (node));