Skip to content

Commit

Permalink
milkymist: remove unused variables in libbase/softfloat.c
Browse files Browse the repository at this point in the history
  • Loading branch information
wpwrak authored and Sebastien Bourdeauducq committed Dec 14, 2011
1 parent 6f50e96 commit 555e97f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions software/libbase/softfloat.c
Expand Up @@ -750,7 +750,7 @@ float32 float32_rem( float32 a, float32 b )
flag aSign, bSign, zSign; flag aSign, bSign, zSign;
int16 aExp, bExp, expDiff; int16 aExp, bExp, expDiff;
bits32 aSig, bSig; bits32 aSig, bSig;
bits32 q, allZero, alternateASig; bits32 q, alternateASig;
sbits32 sigMean; sbits32 sigMean;


aSig = extractFloat32Frac( a ); aSig = extractFloat32Frac( a );
Expand Down Expand Up @@ -985,7 +985,6 @@ IEC/IEEE Standard for Binary Floating-point Arithmetic.
flag float32_le_quiet( float32 a, float32 b ) flag float32_le_quiet( float32 a, float32 b )
{ {
flag aSign, bSign; flag aSign, bSign;
int16 aExp, bExp;


if ( ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) ) if ( ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
|| ( ( extractFloat32Exp( b ) == 0xFF ) && extractFloat32Frac( b ) ) || ( ( extractFloat32Exp( b ) == 0xFF ) && extractFloat32Frac( b ) )
Expand Down

0 comments on commit 555e97f

Please sign in to comment.