This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Patch: FYI: interpreter bug fix
- From: Andreas Tobler <toa at pop dot agri dot ch>
- To: tromey at redhat dot com, GCC-Java <java at gcc dot gnu dot org>
- Date: Sun, 10 Feb 2002 15:58:08 +0100
- Subject: Re: Patch: FYI: interpreter bug fix
- Organization: zero
- References: <87vgd7bu9f.fsf@creche.redhat.com> <3C65505E.111F48A3@pop.agri.ch>
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