Commit a8182d37 by Tom Tromey Committed by Tom Tromey

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
parent b4a49222
2005-01-05 Tom Tromey <tromey@redhat.com> 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 * java/lang/natRuntime.cc (insertSystemProperties): Set
java.ext.dirs earlier. java.ext.dirs earlier.
......
...@@ -2087,11 +2087,11 @@ _Jv_InterpMethod::run (void *retp, ffi_raw *args) ...@@ -2087,11 +2087,11 @@ _Jv_InterpMethod::run (void *retp, ffi_raw *args)
NEXT_INSN; NEXT_INSN;
insn_dcmpl: insn_dcmpl:
tmpval = 1; tmpval = -1;
goto dcmp; goto dcmp;
insn_dcmpg: insn_dcmpg:
tmpval = -1; tmpval = 1;
dcmp: dcmp:
{ {
......
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