public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug java/1207] "Source file newer than class file" warning
       [not found] <20001220121735.1207.mckinlay@redhat.com>
@ 2004-06-24 21:07 ` mckinlay at redhat dot com
  2004-06-25  6:33 ` rmathew at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: mckinlay at redhat dot com @ 2004-06-24 21:07 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From mckinlay at redhat dot com  2004-06-24 21:05 -------
Reopened. Problem exists once again on HEAD as of 2004-06-24.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=1207


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

* [Bug java/1207] "Source file newer than class file" warning
       [not found] <20001220121735.1207.mckinlay@redhat.com>
  2004-06-24 21:07 ` [Bug java/1207] "Source file newer than class file" warning mckinlay at redhat dot com
@ 2004-06-25  6:33 ` rmathew at gcc dot gnu dot org
  2004-06-26 20:42 ` cvs-commit at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: rmathew at gcc dot gnu dot org @ 2004-06-25  6:33 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From rmathew at gcc dot gnu dot org  2004-06-25 06:32 -------
See:
  http://gcc.gnu.org/ml/gcc-patches/2004-06/msg01589.html

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=1207


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

* [Bug java/1207] "Source file newer than class file" warning
       [not found] <20001220121735.1207.mckinlay@redhat.com>
  2004-06-24 21:07 ` [Bug java/1207] "Source file newer than class file" warning mckinlay at redhat dot com
  2004-06-25  6:33 ` rmathew at gcc dot gnu dot org
@ 2004-06-26 20:42 ` cvs-commit at gcc dot gnu dot org
  2004-06-26 20:44 ` mckinlay at redhat dot com
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-06-26 20:42 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-06-26 20:40 -------
Subject: Bug 1207

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	bryce@gcc.gnu.org	2004-06-26 20:40:32

Modified files:
	gcc/java       : ChangeLog jcf-parse.c parse.y 

Log message:
	PR java/1207, java/16178
	* jcf-parse.c (load_class): Return immediately if passed a type decl
	where CLASS_FROM_SOURCE_P is set. Remove FIXME.
	* parse.y (do_resolve_class): Remove checks for CLASS_FROM_SOURCE_P
	before calling load_class.
	(qualify_and_find): Likewise.
	(find_in_imports_on_demand): Likewise.
	(find_applicable_accessible_methods_list): Likewise.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/ChangeLog.diff?cvsroot=gcc&r1=1.1387&r2=1.1388
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/jcf-parse.c.diff?cvsroot=gcc&r1=1.160&r2=1.161
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/parse.y.diff?cvsroot=gcc&r1=1.484&r2=1.485



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=1207


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

* [Bug java/1207] "Source file newer than class file" warning
       [not found] <20001220121735.1207.mckinlay@redhat.com>
                   ` (2 preceding siblings ...)
  2004-06-26 20:42 ` cvs-commit at gcc dot gnu dot org
@ 2004-06-26 20:44 ` mckinlay at redhat dot com
  2004-07-01  3:50 ` cvs-commit at gcc dot gnu dot org
  2004-07-10  0:36 ` [Bug java/1207] [3.5 Regression] " pinskia at gcc dot gnu dot org
  5 siblings, 0 replies; 6+ messages in thread
From: mckinlay at redhat dot com @ 2004-06-26 20:44 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From mckinlay at redhat dot com  2004-06-26 20:43 -------
Fixed, again.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=1207


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

* [Bug java/1207] "Source file newer than class file" warning
       [not found] <20001220121735.1207.mckinlay@redhat.com>
                   ` (3 preceding siblings ...)
  2004-06-26 20:44 ` mckinlay at redhat dot com
@ 2004-07-01  3:50 ` cvs-commit at gcc dot gnu dot org
  2004-07-10  0:36 ` [Bug java/1207] [3.5 Regression] " pinskia at gcc dot gnu dot org
  5 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-07-01  3:50 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-07-01 03:50 -------
Subject: Bug 1207

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	java-gui-branch
Changes by:	fitzsim@gcc.gnu.org	2004-07-01 03:50:52

Modified files:
	gcc/java       : ChangeLog jcf-parse.c parse.y 

Log message:
	2004-06-27  Bryce McKinlay  <mckinlay@redhat.com>
	
	* parse.y (qualify_and_find): Pass type decl, not identifier, to
	load_class.
	
	2004-06-25  Bryce McKinlay  <mckinlay@redhat.com>
	Ranjit Mathew  <rmathew@hotmail.com>
	
	PR java/1207
	* jcf-parse.c (load_class): Return immediately if passed a type decl
	where CLASS_FROM_SOURCE_P is set. Remove FIXME.
	* parse.y (do_resolve_class): Remove checks for CLASS_FROM_SOURCE_P
	before calling load_class.
	(qualify_and_find): Likewise.
	(find_in_imports_on_demand): Likewise.
	(find_applicable_accessible_methods_list): Likewise.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/ChangeLog.diff?cvsroot=gcc&only_with_tag=java-gui-branch&r1=1.1381&r2=1.1381.2.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/jcf-parse.c.diff?cvsroot=gcc&only_with_tag=java-gui-branch&r1=1.160&r2=1.160.2.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/parse.y.diff?cvsroot=gcc&only_with_tag=java-gui-branch&r1=1.481&r2=1.481.2.1



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=1207


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

* [Bug java/1207] [3.5 Regression] "Source file newer than class file" warning
       [not found] <20001220121735.1207.mckinlay@redhat.com>
                   ` (4 preceding siblings ...)
  2004-07-01  3:50 ` cvs-commit at gcc dot gnu dot org
@ 2004-07-10  0:36 ` pinskia at gcc dot gnu dot org
  5 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-07-10  0:36 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|"Source file newer than     |[3.5 Regression] "Source
                   |class file" warning         |file newer than class file"
                   |                            |warning
   Target Milestone|---                         |3.5.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=1207


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

end of thread, other threads:[~2004-07-10  0:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20001220121735.1207.mckinlay@redhat.com>
2004-06-24 21:07 ` [Bug java/1207] "Source file newer than class file" warning mckinlay at redhat dot com
2004-06-25  6:33 ` rmathew at gcc dot gnu dot org
2004-06-26 20:42 ` cvs-commit at gcc dot gnu dot org
2004-06-26 20:44 ` mckinlay at redhat dot com
2004-07-01  3:50 ` cvs-commit at gcc dot gnu dot org
2004-07-10  0:36 ` [Bug java/1207] [3.5 Regression] " pinskia at gcc dot gnu dot org

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).