public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* java/1315
@ 2001-04-05 16:06 apbianco
  0 siblings, 0 replies; 4+ messages in thread
From: apbianco @ 2001-04-05 16:06 UTC (permalink / raw)
  To: apbianco; +Cc: gcc-prs

The following reply was made to PR java/1315; it has been noted by GNATS.

From: apbianco@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: java/1315
Date: 5 Apr 2001 22:59:13 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Changes by:	apbianco@gcc.gnu.org	2001-04-05 15:59:13
 
 Modified files:
 	gcc/java       : ChangeLog java-tree.h parse.y 
 
 Log message:
 	2001-04-04  Alexandre Petit-Bianco  <apbianco@redhat.com>
 	
 	* java-tree.h (struct lang_decl): New macro
 	`DECL_FIXED_CONSTRUCTOR_P.' New field `fixed_ctor.'
 	* parse.y (build_instance_initializer): New function.
 	(add_instance_initializer): Use it.
 	(java_fix_constructors): Set `current_class' before fix pass.
 	(fix_constructors): Just return if already fixed. Move `super()'
 	invokation ahead. Use `build_instance_initializer.'
 	Fixes PR java/1315.
 	
 	( http://gcc.gnu.org/ml/gcc-patches/2001-04/msg00343.html )
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/ChangeLog.diff?cvsroot=gcc&r1=1.715&r2=1.716
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/java-tree.h.diff?cvsroot=gcc&r1=1.109&r2=1.110
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/parse.y.diff?cvsroot=gcc&r1=1.275&r2=1.276
 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* java/1315
@ 2001-04-05 16:06 apbianco
  0 siblings, 0 replies; 4+ messages in thread
From: apbianco @ 2001-04-05 16:06 UTC (permalink / raw)
  To: apbianco; +Cc: gcc-prs

The following reply was made to PR java/1315; it has been noted by GNATS.

From: apbianco@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: java/1315
Date: 5 Apr 2001 22:59:27 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Branch: 	gcc-3_0-branch
 Changes by:	apbianco@gcc.gnu.org	2001-04-05 15:59:27
 
 Modified files:
 	gcc/java       : ChangeLog java-tree.h parse.y 
 
 Log message:
 	2001-04-04  Alexandre Petit-Bianco  <apbianco@redhat.com>
 	
 	* java-tree.h (struct lang_decl): New macro
 	`DECL_FIXED_CONSTRUCTOR_P.' New field `fixed_ctor.'
 	* parse.y (build_instance_initializer): New function.
 	(add_instance_initializer): Use it.
 	(java_fix_constructors): Set `current_class' before fix pass.
 	(fix_constructors): Just return if already fixed. Move `super()'
 	invokation ahead. Use `build_instance_initializer.'
 	Fixes PR java/1315.
 	
 	( http://gcc.gnu.org/ml/gcc-patches/2001-04/msg00343.html )
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_0-branch&r1=1.647.2.36&r2=1.647.2.37
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/java-tree.h.diff?cvsroot=gcc&only_with_tag=gcc-3_0-branch&r1=1.97.2.7&r2=1.97.2.8
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/parse.y.diff?cvsroot=gcc&only_with_tag=gcc-3_0-branch&r1=1.251.2.14&r2=1.251.2.15
 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: java/1315
@ 2001-04-01  0:00 Bryce McKinlay
  0 siblings, 0 replies; 4+ messages in thread
From: Bryce McKinlay @ 2001-04-01  0:00 UTC (permalink / raw)
  To: apbianco; +Cc: gcc-prs

The following reply was made to PR java/1315; it has been noted by GNATS.

From: Bryce McKinlay <bryce@waitaki.otago.ac.nz>
To: apbianco@gcc.gnu.org, gcc-gnats@gcc.gnu.org, bryce@albatross.co.nz
Cc:  
Subject: Re: java/1315
Date: Sat, 03 Mar 2001 14:47:38 +1300

 This bug is still present in the current compilers, however the error
 message is now slightly different:
 
 $ gcj -c InnerInit.java
 InnerInit.java: In class `InnerInit$Inner':
 InnerInit.java: In method `(InnerInit)':
 InnerInit.java:0: Tree check: expected block, have compound_expr
 InnerInit.java:0: confused by earlier errors, bailing out
 
 
 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=1315&database=gcc
 
 
 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: java/1315
@ 2001-03-29 16:36 apbianco
  0 siblings, 0 replies; 4+ messages in thread
From: apbianco @ 2001-03-29 16:36 UTC (permalink / raw)
  To: apbianco; +Cc: gcc-prs

The following reply was made to PR java/1315; it has been noted by GNATS.

From: apbianco@gcc.gnu.org
To: apbianco@gcc.gnu.org, bryce@albatross.co.nz, gcc-gnats@gcc.gnu.org
Cc:  
Subject: Re: java/1315
Date: 30 Mar 2001 00:35:36 -0000

 Synopsis: Inner class initializer crash
 
 State-Changed-From-To: open->feedback
 State-Changed-By: apbianco
 State-Changed-When: Thu Mar 29 19:35:34 2001
 State-Changed-Why:
     I'm attaching a patch. This also shows that we had a bogus
     test result. There's a patch to fix that too.
 
 http://sources.redhat.com/cgi-bin/gnatsweb.pl?cmd=view&pr=1315&database=gcc


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2001-04-05 16:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-04-05 16:06 java/1315 apbianco
  -- strict thread matches above, loose matches on Subject: below --
2001-04-05 16:06 java/1315 apbianco
2001-04-01  0:00 java/1315 Bryce McKinlay
2001-03-29 16:36 java/1315 apbianco

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).