Commit d4266524 authored by malenov's avatar malenov
Browse files

avoid instrumenting of auxiliary float <-> fixed conversion functions

parent 96769830
Loading
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -60,6 +60,8 @@ const Word16 b_hp400_fx[3] = { 3660, -7320, 3660 }; /* Q12 (/4) */
const Word16 a_hp400_fx[3] = { 16384, 29280, -14160 };
const Word16 a_hp400_ivas_fx[3] = { 4096, 7320, -3540 }; /*Q12*/

#define WMC_TOOL_SKIP

// conversion functions:
Word32 float_to_fix( float number, Word32 Q )
{
@@ -238,6 +240,8 @@ void fix2f_16( Word16 *var_fix, float *var_flt, Word32 expo )
    *var_flt = (float) ldexp( mf, expo );
}

#undef WMC_TOOL_SKIP

int16_t norm_ul( uint32_t UL_var1 )
{
    int16_t var_out;