Commit 2ec53045 authored by vaclav's avatar vaclav
Browse files

add instrumentation

parent 84d59d91
Loading
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -348,7 +348,7 @@ void mvs2s(
        return;
    }

    IF( LT_16(y, x ) )
    IF( y < x )
    {
        FOR( i = 0; i < n; i++ )
        {
@@ -620,7 +620,7 @@ Word32 dotp_fx32_o(
    move16();
    test();
    test();
    FOR( ; ( suma > MAX_32 ) || ( suma < MIN_32 ) || ( *res_q > 31 ); )
    FOR( ; ( GT_64( suma, MAX_32 ) ) || LT_64( suma, MIN_32 ) || GT_16( *res_q, 31 ); )
    {
        suma = W_shr( suma, 1 );
        *res_q = sub( *res_q, 1 );
@@ -1866,8 +1866,8 @@ Word16 minimum_32_fx(
    if ( min_fx != NULL )
    {
        *min_fx = tmp;
    }
        move32();
    }    

    return ind;
}
@@ -1905,8 +1905,8 @@ Word16 maximum_32_fx(
    if ( max_val != NULL )
    {
        *max_val = tmp;
    }
        move32();
    }    

    return ind;
}