fix GCC10 error

This commit is contained in:
Richard Goedeken 2020-05-26 20:59:30 -07:00
parent e49f1fe448
commit 06601cf6f5

View file

@ -13,6 +13,8 @@
* If not, see <http://creativecommons.org/publicdomain/zero/1.0/>. *
\******************************************************************************/
#include <string.h>
#include "add.h"
#ifdef ARCH_MIN_SSE2
@ -162,7 +164,7 @@ INLINE static void do_abs(pi16 VD, pi16 VS, pi16 VT)
for (i = 0; i < N; i++)
pos[i] = (VS[i] > 0x0000);
//vector_wipe(nez);
memset(&nez, 0, sizeof(nez));
memset(&nez, 0, sizeof(nez));
for (i = 0; i < N; i++)
nez[i] -= neg[i];