Commit 6e3ca961 authored by malenov's avatar malenov
Browse files

comments

parent ab20d2d3
Loading
Loading
Loading
Loading
Loading
+6 −10
Original line number Diff line number Diff line
@@ -469,7 +469,6 @@ extern int cntr_push_pop;
#define return_                                                                     \
    OP_COUNT_WRAPPER2_( ( wmc_flag_ = stack_tree_level_, STACK_DEPTH_FCT_RETURN ) ) \
    return

#define switch_                                           \
    OP_COUNT_WRAPPER2_( ( BRANCH_( 1 ), wmc_flag_ = 1 ) ) \
    switch
@@ -1063,7 +1062,7 @@ static __inline void incrWhile( void )
 *      - or when the 'if' conditions several DSP basic operations,
 *      - or when the 'if' conditions a function call.
 *
 *  Complexity weight : 4
 *  Complexity weight : 3
 *
 *****************************************************************************/

@@ -1083,7 +1082,7 @@ void incrIf( const char *func_name );
 *
 *    The macro ELSE should be used instead of the 'else' C statement.
 *
 *  Complexity weight : 4
 *  Complexity weight : 3
 *
 *****************************************************************************/

@@ -1103,7 +1102,7 @@ void incrElse( const char *func_name );
 *
 *    The macro SWITCH should be used instead of the 'switch' C statement.
 *
 *  Complexity weight : 8
 *  Complexity weight : 6
 *
 *****************************************************************************/
#ifndef WMOPS
@@ -1127,7 +1126,7 @@ static __inline void incrSwitch( void )
 *
 *    The macro CONTINUE should be used instead of the 'continue' C statement.
 *
 *  Complexity weight : 4
 *  Complexity weight : 2
 *
 *****************************************************************************/
#ifndef WMOPS
@@ -1155,7 +1154,7 @@ static __inline void incrContinue( void )
 *
 *    The macro BREAK should be used instead of the 'break' C statement.
 *
 *  Complexity weight : 4
 *  Complexity weight : 2
 *
 *****************************************************************************/
#ifndef WMOPS
@@ -1183,7 +1182,7 @@ static __inline void incrBreak( void )
 *
 *    The macro GOTO should be used instead of the 'goto' C statement.
 *
 *  Complexity weight : 4
 *  Complexity weight : 2
 *
 *****************************************************************************/
#ifndef WMOPS
@@ -1203,9 +1202,6 @@ static __inline void incrGoto( void )
#endif /* ifndef WMOPS */


/*
 *  New control code basops
 */
#ifdef CONTROL_CODE_OPS

extern int LT_16( short var1, short var2 );