Commit 1347adff by Andreas Tobler Committed by Tom Tromey

interpret.cc (continue1): Use PUSHL, not PUSHI.

2002-02-10  Andreas Tobler  <toa@pop.agri.ch>

	* interpret.cc (continue1) [insn_f2l]: Use PUSHL, not PUSHI.

From-SVN: r49655
parent 276ef573
2002-02-10 Andreas Tobler <toa@pop.agri.ch>
* interpret.cc (continue1) [insn_f2l]: Use PUSHL, not PUSHI.
2002-02-08 Tom Tromey <tromey@redhat.com> 2002-02-08 Tom Tromey <tromey@redhat.com>
* interpret.cc (convert): New function. * interpret.cc (convert): New function.
......
...@@ -1562,7 +1562,7 @@ void _Jv_InterpMethod::continue1 (_Jv_InterpMethodInvocation *inv) ...@@ -1562,7 +1562,7 @@ void _Jv_InterpMethod::continue1 (_Jv_InterpMethodInvocation *inv)
{ {
using namespace java::lang; using namespace java::lang;
jlong value = convert (POPF (), Long::MIN_VALUE, Long::MAX_VALUE); jlong value = convert (POPF (), Long::MIN_VALUE, Long::MAX_VALUE);
PUSHI(value); PUSHL(value);
} }
NEXT_INSN; NEXT_INSN;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment