This is the mail archive of the
java-prs@sourceware.cygnus.com
mailing list for the Java project.
gcj/97: Internal compiler error
- To: java-gnats at sourceware dot cygnus dot com
- Subject: gcj/97: Internal compiler error
- From: joerg dot brunsmann at fernuni-hagen dot de
- Date: 11 Nov 1999 09:31:54 -0000
- Reply-To: joerg dot brunsmann at fernuni-hagen dot de
- Resent-Cc: java-prs at sourceware dot cygnus dot com, green at cygnus dot com
- Resent-Reply-To: java-gnats@sourceware.cygnus.com, joerg.brunsmann@fernuni-hagen.de
>Number: 97
>Category: gcj
>Synopsis: Internal compiler error
>Confidential: no
>Severity: serious
>Priority: medium
>Responsible: apbianco
>State: open
>Class: sw-bug
>Submitter-Id: net
>Arrival-Date: Thu Nov 11 01:40:00 PST 1999
>Closed-Date:
>Last-Modified:
>Originator: joerg.brunsmann@fernuni-hagen.de
>Release: gcc version 2.96 19991102 (experimental)
>Organization:
>Environment:
SPARC/Solaris 2.7
>Description:
Access to the length attribute via method call gives:
gcj: Internal compiler error: program jc1 got fatal signal 11
>How-To-Repeat:
public class Test {
public static void main(String [] args) {
int i = args.length();
}
}
compile with:
gcj --main=Test -o Test Test.java
This is ok:
public class Test {
public static void main(String [] args) {
int i = args.length;
}
}
>Fix:
>Release-Note:
>Audit-Trail:
>Unformatted: