Commit 73309f08 authored by vaclav's avatar vaclav
Browse files

remove sum_l() leftover

parent f34818ef
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -155,13 +155,14 @@ int16_t sum_s(
    const int16_t *vec, /* i  : input vector                                    */
    const int16_t lvec  /* i  : length of input vector                          */
);

#ifdef DEBUGGING
/*! r: sum of all vector elements */
int32_t sum_l(
    const int32_t *vec, /* i  : input vector                                    */
    const int16_t lvec  /* i  : length of input vector                          */
);

#endif
/*! r: sum of all vector elements */
float sum_f(
    const float *vec,  /* i  : input vector                                    */
+2 −0
Original line number Diff line number Diff line
@@ -138,6 +138,7 @@ int16_t sum_s(
    return tmp;
}

#ifdef DEBUGGING
/*! r: sum of all vector elements */
int32_t sum_l(
    const int32_t *vec, /* i  : input vector                          */
@@ -156,6 +157,7 @@ int32_t sum_l(
    return tmpL;
}

#endif
/*! r: sum of all vector elements */
float sum_f(
    const float *vec,  /* i  : input vector                          */