This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: Libjava bootstrap still broken on arm-linux
Tom Tromey writes:
> >>>>> "Andrew" == Andrew Haley <aph@redhat.com> writes:
>
> Andrew> + #ifdef INTERPRETER
> Andrew> if (! _Jv_IsInterpretedClass (klass))
> Andrew> + #endif
>
> How about we just have _Jv_IsInterpretedClass return `false' when the
> interpreter isn't compiled in? Then we can avoid some icky #ifdefs.
Any way you want it! This was an emergency patch, not expected to
persist beyond next sunrise.
> Andrew> + /* FIXME: this should really be defined in some more generic place */
> Andrew> + #define ROUND(V, A) (((((unsigned) (V))-1) | ((A)-1))+1)
> Andrew> +
>
> We might as well remove this comment, you can't get more generic than
> jvm.h.
Uh, whatever...
Andrew.