fix for inverted condition in ABS

This commit is contained in:
Jesse D. McDonald 2020-10-28 01:21:02 -05:00
parent e7dacc5582
commit a1c55c0d64
1 changed files with 1 additions and 1 deletions

View File

@ -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