fix for inverted condition in ABS
This commit is contained in:
parent
e7dacc5582
commit
a1c55c0d64
|
|
@ -454,7 +454,7 @@ defcode NEGATE
|
||||||
defcode ABS
|
defcode ABS
|
||||||
pop %eax
|
pop %eax
|
||||||
test %eax,%eax
|
test %eax,%eax
|
||||||
jl 0f
|
jnl 0f
|
||||||
neg %eax
|
neg %eax
|
||||||
0: push %eax
|
0: push %eax
|
||||||
NEXT
|
NEXT
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue