This is the mail archive of the gcc-prs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

java/3732: ICE with exception on Linux



>Number:         3732
>Category:       java
>Synopsis:       ICE with exception on Linux
>Confidential:   no
>Severity:       critical
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          ice-on-legal-code
>Submitter-Id:   net
>Arrival-Date:   Thu Jul 19 01:16:02 PDT 2001
>Closed-Date:
>Last-Modified:
>Originator:     Martin Kahlert
>Release:        3.1 20010718 (experimental)
>Organization:
Infineon AG
>Environment:
System: Linux keksy 2.2.20pre2 #2 SMP Thu Jun 7 16:37:06 CEST 2001 i686 unknown
Architecture: i686

	
host: i686-pc-linux-gnu
build: i686-pc-linux-gnu
target: i686-pc-linux-gnu
configured with: ../configure --prefix=/sw/gcc-3.1 --enable-languages=c++,f77,java --enable-threads=posix
>Description:
bug.java: In class `bug':
bug.java: In method `bug.buggy()':
bug.java:17: Internal compiler error in optimize_mode_switching, at lcm.c:1256
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.

>How-To-Repeat:
cat bug.java
class bug
{
 int  state;

 void buggy() throws Exception
    {
     try
        {
         state = state | 1;
         for (int i=0; i< getChildCount(); i++)
             ;
        }
     catch (Exception e)
        {
         throw e;
        }
    }

 int getChildCount()
    {
     return 1;
    }
}

gcj -c bug.java
>Fix:
	Unknown
>Release-Note:
>Audit-Trail:
>Unformatted:


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]