public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug java/5640] gcj references wrong class in qualified method invocation
       [not found] <20020209015600.5640.ebb9@email.byu.edu>
@ 2003-05-25  3:44 ` dhazeghi@yahoo.com
  2003-05-25  4:16 ` pinskia@physics.uc.edu
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: dhazeghi@yahoo.com @ 2003-05-25  3:44 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From dhazeghi@yahoo.com  2003-05-25 03:31 -------
Hello,

could you please report whether this bug still occurs with current versions of gcc (ie 3.3)? The 
message referenced by this bug is not longer available, so if a working link to that could be 
provided, that would be great too. As always, testcases make it much easier to verify whether bugs 
are still present. Thanks,

Dara



------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


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

* [Bug java/5640] gcj references wrong class in qualified method invocation
       [not found] <20020209015600.5640.ebb9@email.byu.edu>
  2003-05-25  3:44 ` [Bug java/5640] gcj references wrong class in qualified method invocation dhazeghi@yahoo.com
@ 2003-05-25  4:16 ` pinskia@physics.uc.edu
  2003-08-24  0:19 ` pinskia at gcc dot gnu dot org
  2003-08-24  0:20 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia@physics.uc.edu @ 2003-05-25  4:16 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


pinskia@physics.uc.edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING





------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


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

* [Bug java/5640] gcj references wrong class in qualified method invocation
       [not found] <20020209015600.5640.ebb9@email.byu.edu>
  2003-05-25  3:44 ` [Bug java/5640] gcj references wrong class in qualified method invocation dhazeghi@yahoo.com
  2003-05-25  4:16 ` pinskia@physics.uc.edu
@ 2003-08-24  0:19 ` pinskia at gcc dot gnu dot org
  2003-08-24  0:20 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-08-24  0:19 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |NEW


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-08-24 00:19 -------
Found the email: <http://mail.gnu.org/archive/html/classpath/2002-02/msg00112.html>.
>From that email:
It makes a difference in this example:
in A.java:
class A
{
  static void m() { System.out.print("a"); }
}

in B.java:
class B extends A {}

in C.java:
class C
{
  public static void main(String[] args)
  {
    B.m();
  }
}

Now, recompile B.java:
class B extends A
{
  static void m() { System.out.print("b"); }
}

The result of executing the (unchanged) C.class should now be "b", not
"a".


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

* [Bug java/5640] gcj references wrong class in qualified method invocation
       [not found] <20020209015600.5640.ebb9@email.byu.edu>
                   ` (2 preceding siblings ...)
  2003-08-24  0:19 ` pinskia at gcc dot gnu dot org
@ 2003-08-24  0:20 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-08-24  0:20 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From pinskia at gcc dot gnu dot org  2003-08-24 00:20 -------
Forgot to menation that I could reproduce the bug on the mainline (20030823).


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

* [Bug java/5640] gcj references wrong class in qualified method invocation
       [not found] <bug-5640-1885@http.gcc.gnu.org/bugzilla/>
@ 2007-01-09 20:45 ` tromey at gcc dot gnu dot org
  0 siblings, 0 replies; 5+ messages in thread
From: tromey at gcc dot gnu dot org @ 2007-01-09 20:45 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from tromey at gcc dot gnu dot org  2007-01-09 20:43 -------
All gcj front end bugs have been fixed by the gcj-eclipse branch merge.
I'm mass-closing the affected PRs.
If you believe one of these was closed in error, please reopen it
with a note explaining why.
Thanks.


-- 

tromey at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.3.0


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


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

end of thread, other threads:[~2007-01-09 20:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20020209015600.5640.ebb9@email.byu.edu>
2003-05-25  3:44 ` [Bug java/5640] gcj references wrong class in qualified method invocation dhazeghi@yahoo.com
2003-05-25  4:16 ` pinskia@physics.uc.edu
2003-08-24  0:19 ` pinskia at gcc dot gnu dot org
2003-08-24  0:20 ` pinskia at gcc dot gnu dot org
     [not found] <bug-5640-1885@http.gcc.gnu.org/bugzilla/>
2007-01-09 20:45 ` tromey 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).