This is the mail archive of the java@gcc.gnu.org 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]
Other format: [Raw text]

Re: Patch: FYI: interpreter bug fix




Andreas Tobler wrote:
 
> Does this point to a problem in ffi_darwin and co?

I don't think so ;-)

While my family is watching Monster Inc. I tracked down the following.

Little typo caused headache:

--- interpret.cc.orig   Sun Feb 10 15:41:34 2002
+++ interpret.cc        Sun Feb 10 15:32:04 2002
@@ -1562,7 +1562,7 @@
       {
        using namespace java::lang;
        jlong value = convert (POPF (), Long::MIN_VALUE, Long::MAX_VALUE);
-       PUSHI(value);
+       PUSHL(value);
       }
       NEXT_INSN;

Regards,

Andreas


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