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
This commit is contained in:
Andreas Tobler 2002-02-10 19:32:48 +01:00 committed by Tom Tromey
parent 276ef573ed
commit 1347adff0d
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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>
* interpret.cc (convert): New function.

View File

@ -1562,7 +1562,7 @@ void _Jv_InterpMethod::continue1 (_Jv_InterpMethodInvocation *inv)
{
using namespace java::lang;
jlong value = convert (POPF (), Long::MIN_VALUE, Long::MAX_VALUE);
PUSHI(value);
PUSHL(value);
}
NEXT_INSN;