Fix reversed polarity of FP comparisons

db4
Slava Pestov 2008-10-10 02:33:47 -05:00
parent 3e29808f17
commit c98651043c
1 changed files with 5 additions and 5 deletions

View File

@ -37,11 +37,11 @@ M: x86 %unbox-float ( dst src -- )
{ { float "x" } { float "y" } } define-if-intrinsic ;
{
{ float< JAE }
{ float<= JA }
{ float> JBE }
{ float>= JB }
{ float= JNE }
{ float< JB }
{ float<= JBE }
{ float> JA }
{ float>= JAE }
{ float= JE }
} [
first2 define-float-jump
] each