(Very) minor improvement from NetBSD/J.T.Conklin.

This commit is contained in:
David Greenman 1995-01-22 22:03:45 +00:00
parent 95f51c5b57
commit 1504cd6172
2 changed files with 4 additions and 4 deletions

View file

@ -43,7 +43,7 @@
ENTRY(abs)
movl 4(%esp),%eax
cmpl $0,%eax
jge 1f
testl %eax,%eax
jns 1f
negl %eax
1: ret

View file

@ -43,7 +43,7 @@
ENTRY(labs)
movl 4(%esp),%eax
cmpl $0,%eax
jge 1f
testl %eax,%eax
jns 1f
negl %eax
1: ret