This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: ClassLoader: unexpected exception during linking
- From: Tom Tromey <tromey at redhat dot com>
- To: Per Bothner <per at bothner dot com>
- Cc: java at gcc dot gnu dot org, Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 05 Dec 2002 01:09:42 -0700
- Subject: Re: ClassLoader: unexpected exception during linking
- References: <Pine.LNX.4.44.0212031448440.24066-100000@ops2.one-point.com><87u1hs7w27.fsf@fleche.redhat.com> <3DEF03AC.4050305@bothner.com>
- Reply-to: tromey at redhat dot com
>>>>> "Per" == Per Bothner <per@bothner.com> writes:
Per> Visual inspection of teh code (i.e. I haevn't tested it yet)
Per> suggests that "protected" isn't implemente correct, and the
Per> appended patch is needed.
FYI there's similar code in _Jv_SearchMethodInClass in the same file.
To me the PRIVATE test looks a bit weird. For instance,
`PROTECTED & PRIVATE' == 0, but that yields the wrong answer
(if the referenced member is protected but is in our package).
Tom