diff options
author | obrien <obrien@FreeBSD.org> | 2000-05-22 16:58:44 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-05-22 16:58:44 +0000 |
commit | a33f969ecd51ddc14b57ec05f81aa972521d3367 (patch) | |
tree | 59d4b624554ebb4b72ae54c258d2057b143a77eb /sys/gnu | |
parent | 3848c8a61b18023b5caf9eaab54dbc64e0cac484 (diff) | |
download | FreeBSD-src-a33f969ecd51ddc14b57ec05f81aa972521d3367.zip FreeBSD-src-a33f969ecd51ddc14b57ec05f81aa972521d3367.tar.gz |
If we are going to do a byte compare, the operands should be byte-sized.
In this case, I believe we want to compare against the 32-bit operand so
use a full-world compare operation.
Diffstat (limited to 'sys/gnu')
-rw-r--r-- | sys/gnu/i386/fpemul/reg_round.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/gnu/i386/fpemul/reg_round.s b/sys/gnu/i386/fpemul/reg_round.s index a01422f..f12e055 100644 --- a/sys/gnu/i386/fpemul/reg_round.s +++ b/sys/gnu/i386/fpemul/reg_round.s @@ -385,7 +385,7 @@ LRound_nearest_64: jne LDo_64_round_up /* Now test for round-to-even */ - testb $1,%ebx + test $1,%ebx jz LCheck_truncate_64 LDo_64_round_up: |