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:
parent
b4a49222ae
commit
a8182d3719
@ -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
|
||||
|
@ -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:
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user