This is the mail archive of the java-discuss@sourceware.cygnus.com mailing list for the Java project.


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

Re: gcj bug



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

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