Commit 54b49662 authored by vaillancour's avatar vaillancour
Browse files

more adaptation for wmc_tool

parent 11c67994
Loading
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -49,6 +49,8 @@
#include "stl.h"
#include <assert.h>

#define WMC_TOOL_SKIP

#ifdef WMOPS
static double frameRate = FRAME_RATE; /* default value : 10 ms */
#endif                                /* ifdef WMOPS */
@@ -1378,3 +1380,4 @@ void BASOP_get_total_wmops( double *min, double *max, double *avg )
    UNUSED_PARAM( avg );
}
/* end of file */
#undef WMC_TOOL_SKIP
+3 −0
Original line number Diff line number Diff line
@@ -56,6 +56,8 @@
#include <stdlib.h>
#include "stl.h"

#define WMC_TOOL_SKIP

#if ( WMOPS )
extern BASIC_OP multiCounter[MAXCOUNTERS];
extern int currCounter;
@@ -685,5 +687,6 @@ Word32 L_rotl( Word32 L_var1, Word16 var2, Word16 *var3 )
    return ( L_var_out );
}

#undef WMC_TOOL_SKIP

/* end of file */
+3 −0
Original line number Diff line number Diff line
@@ -23,6 +23,8 @@
#include <stdlib.h>
#include "enh32.h"

#define WMC_TOOL_SKIP

#if ( WMOPS )
extern BASIC_OP multiCounter[MAXCOUNTERS];
extern int currCounter;
@@ -244,5 +246,6 @@ Word32 Msub_32_32_r( Word32 L_var3, Word32 L_var1, Word32 L_var2 )
}

#endif /* #ifdef ENH_32_BIT_OPERATOR */
#undef WMC_TOOL_SKIP

/* end of file */
+3 −0
Original line number Diff line number Diff line
@@ -18,6 +18,8 @@
#include <stdlib.h>
#include "enh64.h"

#define WMC_TOOL_SKIP

#if ( WMOPS )
extern BASIC_OP multiCounter[MAXCOUNTERS];
extern int currCounter;
@@ -1854,5 +1856,6 @@ Word32 W_round64_L( Word64 L64_var1 )
}

#endif /* #ifdef ENH_64_BIT_OPERATOR */
#undef WMC_TOOL_SKIP

/* end of file */
+3 −0
Original line number Diff line number Diff line
@@ -27,6 +27,8 @@
#include "stl.h"
#include "enhUL32.h"

#define WMC_TOOL_SKIP

#if ( WMOPS )
extern BASIC_OP multiCounter[MAXCOUNTERS];
extern int currCounter;
@@ -417,5 +419,6 @@ UWord32 UL_addNsD( UWord32 UL_var1, UWord32 UL_var2 )
#endif

#endif /* ENH_U_32_BIT_OPERATOR */
#undef WMC_TOOL_SKIP

/* end of file */
Loading