Browse Source

Suppress unused-paramter warnings in softfloat

pull/1089/head
Andrew Waterman 4 years ago
parent
commit
ae747db810
  1. 6
      softfloat/specialize.h

6
softfloat/specialize.h

@ -238,6 +238,9 @@ INLINE
struct uint128 softfloat_commonNaNToExtF80UI( const struct commonNaN *aPtr )
{
struct uint128 uiZ;
(void) aPtr;
uiZ.v64 = defaultNaNExtF80UI64;
uiZ.v0 = defaultNaNExtF80UI0;
return uiZ;
@ -295,6 +298,9 @@ INLINE
struct uint128 softfloat_commonNaNToF128UI( const struct commonNaN *aPtr )
{
struct uint128 uiZ;
(void) aPtr;
uiZ.v64 = defaultNaNF128UI64;
uiZ.v0 = defaultNaNF128UI0;
return uiZ;

Loading…
Cancel
Save