public inbox for java-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug java/25283]  New: gcj generates invalid signature
@ 2005-12-06 19:01 tromey at gcc dot gnu dot org
  2005-12-07  0:32 ` [Bug java/25283] " tromey at gcc dot gnu dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: tromey at gcc dot gnu dot org @ 2005-12-06 19:01 UTC (permalink / raw)
  To: java-prs

gcj generates an invalid signature for the anonymous constructor
in this test case:

public class t {
  public t(char[][] args) { }

  public Object m() {
    return new t(new char[][] { "hi".toCharArray(),
                                "bob".toCharArray(),
                                "and joe".toCharArray() }) {
      };
  }
}


-- 
           Summary: gcj generates invalid signature
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: java
        AssignedTo: tromey at gcc dot gnu dot org
        ReportedBy: tromey at gcc dot gnu dot org


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


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

* [Bug java/25283] gcj generates invalid signature
  2005-12-06 19:01 [Bug java/25283] New: gcj generates invalid signature tromey at gcc dot gnu dot org
@ 2005-12-07  0:32 ` tromey at gcc dot gnu dot org
  2005-12-07  0:34 ` tromey at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: tromey at gcc dot gnu dot org @ 2005-12-07  0:32 UTC (permalink / raw)
  To: java-prs



------- Comment #1 from tromey at gcc dot gnu dot org  2005-12-07 00:32 -------
Subject: Bug 25283

Author: tromey
Date: Wed Dec  7 00:31:58 2005
New Revision: 108143

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=108143
Log:
        PR java/25283:
        * parse.y (patch_new_array_init): Revert previous patch.
        (lookup_method_invoke): Use size-less array type when creating an
        anonymous constructor.

Modified:
    trunk/gcc/java/ChangeLog
    trunk/gcc/java/parse.y


-- 


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


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

* [Bug java/25283] gcj generates invalid signature
  2005-12-06 19:01 [Bug java/25283] New: gcj generates invalid signature tromey at gcc dot gnu dot org
  2005-12-07  0:32 ` [Bug java/25283] " tromey at gcc dot gnu dot org
@ 2005-12-07  0:34 ` tromey at gcc dot gnu dot org
  2005-12-07  0:35 ` tromey at gcc dot gnu dot org
  2005-12-07  0:38 ` tromey at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: tromey at gcc dot gnu dot org @ 2005-12-07  0:34 UTC (permalink / raw)
  To: java-prs



------- Comment #2 from tromey at gcc dot gnu dot org  2005-12-07 00:34 -------
Subject: Bug 25283

Author: tromey
Date: Wed Dec  7 00:34:36 2005
New Revision: 108144

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=108144
Log:
        PR java/25283:
        * parse.y (patch_new_array_init): Revert previous patch.
        (lookup_method_invoke): Use size-less array type when creating an
        anonymous constructor.

Modified:
    branches/gcc-4_1-branch/gcc/java/ChangeLog
    branches/gcc-4_1-branch/gcc/java/parse.y


-- 


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


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

* [Bug java/25283] gcj generates invalid signature
  2005-12-06 19:01 [Bug java/25283] New: gcj generates invalid signature tromey at gcc dot gnu dot org
  2005-12-07  0:32 ` [Bug java/25283] " tromey at gcc dot gnu dot org
  2005-12-07  0:34 ` tromey at gcc dot gnu dot org
@ 2005-12-07  0:35 ` tromey at gcc dot gnu dot org
  2005-12-07  0:38 ` tromey at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: tromey at gcc dot gnu dot org @ 2005-12-07  0:35 UTC (permalink / raw)
  To: java-prs



------- Comment #3 from tromey at gcc dot gnu dot org  2005-12-07 00:35 -------
Subject: Bug 25283

Author: tromey
Date: Wed Dec  7 00:35:06 2005
New Revision: 108145

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=108145
Log:
        PR java/25283:
        * parse.y (patch_new_array_init): Revert previous patch.
        (lookup_method_invoke): Use size-less array type when creating an
        anonymous constructor.

Modified:
    branches/gcc-4_0-branch/gcc/java/ChangeLog
    branches/gcc-4_0-branch/gcc/java/parse.y


-- 


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


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

* [Bug java/25283] gcj generates invalid signature
  2005-12-06 19:01 [Bug java/25283] New: gcj generates invalid signature tromey at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2005-12-07  0:35 ` tromey at gcc dot gnu dot org
@ 2005-12-07  0:38 ` tromey at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: tromey at gcc dot gnu dot org @ 2005-12-07  0:38 UTC (permalink / raw)
  To: java-prs



------- Comment #4 from tromey at gcc dot gnu dot org  2005-12-07 00:38 -------
Fix checked in.


-- 

tromey at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.0.3


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


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

end of thread, other threads:[~2005-12-07  0:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-12-06 19:01 [Bug java/25283] New: gcj generates invalid signature tromey at gcc dot gnu dot org
2005-12-07  0:32 ` [Bug java/25283] " tromey at gcc dot gnu dot org
2005-12-07  0:34 ` tromey at gcc dot gnu dot org
2005-12-07  0:35 ` tromey at gcc dot gnu dot org
2005-12-07  0:38 ` 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).