Commit cd8a25337e567544f52630413699d77a023237d0
1 parent
0b1b91c7
Fix more typos in softloat code (Eduardo Felipe)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3716 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
fpu/softfloat.c
... | ... | @@ -5391,7 +5391,7 @@ INLINE int float ## s ## _compare_internal( float ## s a, float ## s b, \ |
5391 | 5391 | aSign = extractFloat ## s ## Sign( a ); \ |
5392 | 5392 | bSign = extractFloat ## s ## Sign( b ); \ |
5393 | 5393 | av = float ## s ## _val(a); \ |
5394 | - bv = float ## s ## _val(a); \ | |
5394 | + bv = float ## s ## _val(b); \ | |
5395 | 5395 | if ( aSign != bSign ) { \ |
5396 | 5396 | if ( (bits ## s) ( ( av | bv )<<1 ) == 0 ) { \ |
5397 | 5397 | /* zero case */ \ | ... | ... |