gcj bug

Anthony Green green@cygnus.com
Sun Jun 13 09:57:00 GMT 1999


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


More information about the Java mailing list