re PR libgcj/15719 (GIJ Interpeter: Problem with NaN / infinity comparisons)

PR libgcj/15719:
	* interpret.cc (run) <insn_dcmpl, insn_dcmpg>: Set tmpval
	correctly.

From-SVN: r92966
This commit is contained in:
Tom Tromey 2005-01-05 19:03:10 +00:00 committed by Tom Tromey
parent b4a49222ae
commit a8182d3719
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2005-01-05 Tom Tromey <tromey@redhat.com>
PR libgcj/15719:
* interpret.cc (run) <insn_dcmpl, insn_dcmpg>: Set tmpval
correctly.
2005-01-05 Tom Tromey <tromey@redhat.com>
* java/lang/natRuntime.cc (insertSystemProperties): Set

View File

@ -2087,11 +2087,11 @@ _Jv_InterpMethod::run (void *retp, ffi_raw *args)
NEXT_INSN;
insn_dcmpl:
tmpval = 1;
tmpval = -1;
goto dcmp;
insn_dcmpg:
tmpval = -1;
tmpval = 1;
dcmp:
{