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