primitives: removed build warnings on arm
This commit is contained in:
parent
f3e1beca58
commit
08772f6402
@ -203,7 +203,7 @@ int test_alphaComp_func(void)
|
||||
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
STD_SPEED_TEST(alphaComp_speed, BYTE, BYTE, int bytes = size*4,
|
||||
STD_SPEED_TEST(alphaComp_speed, BYTE, BYTE, int bytes __attribute__((unused)) = size*4,
|
||||
TRUE, general_alphaComp_argb(src1, bytes, src2, bytes, dst, bytes,
|
||||
size, size),
|
||||
#ifdef WITH_SSE2
|
||||
@ -212,7 +212,6 @@ STD_SPEED_TEST(alphaComp_speed, BYTE, BYTE, int bytes = size*4,
|
||||
#else
|
||||
FALSE, PRIM_NOP, 0, FALSE,
|
||||
#endif
|
||||
|
||||
TRUE, ipp_alphaComp_argb(src1, bytes, src2, bytes, dst, bytes,
|
||||
size, size));
|
||||
|
||||
|
@ -287,7 +287,7 @@ STD_SPEED_TEST(set32s_speed_test, INT32, INT32, dst=dst,
|
||||
#ifdef WITH_SSE2
|
||||
TRUE, sse2_set_32s(constant, dst, size), PF_XMMI64_INSTRUCTIONS_AVAILABLE, FALSE,
|
||||
#else
|
||||
FALSE, NULL, 0, FALSE,
|
||||
FALSE, PRIM_NOP, 0, FALSE,
|
||||
#endif
|
||||
TRUE, ippsSet_32s(constant, dst, size));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user