This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [java] fix some alpha/ia64 compile failures
Richard Henderson wrote:
>
>No, sorry, that's the name of the test case:
>
> libjava/testsuite/libjava.compile/PR375.java
>
Hmm... something is definately going wrong with this test case. When I
try to run it on ppc I get a NullPointerException because Boolean.class
never gets initialized, but if I change it from
(Boolean.TRUE).booleanValue();
to
Boolean.TRUE.booleanValue();
then it works fine.
Bryce.