The change to do a longword compare in the previous commit just broke an

apparently-intended micro-optimization ("testb" is equivalent and smaller)
and added a style bug (the size suffix for "testl" was missing).
linux-2.3.35 already had the correct fix.
This commit is contained in:
Bruce Evans 2000-06-03 11:09:09 +00:00
parent 8b788cbd86
commit 61b9b2965c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=61215

View File

@ -385,7 +385,7 @@ LRound_nearest_64:
jne LDo_64_round_up
/* Now test for round-to-even */
test $1,%ebx
testb $1,%bl
jz LCheck_truncate_64
LDo_64_round_up: