This is the mail archive of the
java-discuss@sourceware.cygnus.com
mailing list for the Java project.
Re: gcj bug
- To: hasty@netcom.com
- Subject: Re: gcj bug
- From: Anthony Green <green@cygnus.com>
- Date: Sun, 13 Jun 1999 09:57:18 -0700 (PDT)
- CC: java-discuss@sourceware.cygnus.com
Amancio wrote:
> Fails to compile method `search(java.lang.String,int,java.lang.String,java.lang.String[],boolean,netscape.ldap.LDAPSearchConstraints)'
Yep - this is definitely a bytecode->native bug. I had time to create
a minimal test case:
class EH
{
public int a;
public EH()
{
try {
a = 1;
} catch(Throwable x) {
}
try {
a = 2;
} catch(Throwable x) {
} finally {
a = 3;
}
}
}
AG
--
Anthony Green Cygnus Solutions
Sunnyvale, California
- References:
- gcj bug
- From: Amancio Hasty Jr <hasty@netcom.com>