primitives: removed build warnings on arm

This commit is contained in:
Bernhard Miklautz 2013-02-28 12:18:21 +01:00
parent f3e1beca58
commit 08772f6402
2 changed files with 2 additions and 3 deletions

View File

@ -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, TRUE, general_alphaComp_argb(src1, bytes, src2, bytes, dst, bytes,
size, size), size, size),
#ifdef WITH_SSE2 #ifdef WITH_SSE2
@ -212,7 +212,6 @@ STD_SPEED_TEST(alphaComp_speed, BYTE, BYTE, int bytes = size*4,
#else #else
FALSE, PRIM_NOP, 0, FALSE, FALSE, PRIM_NOP, 0, FALSE,
#endif #endif
TRUE, ipp_alphaComp_argb(src1, bytes, src2, bytes, dst, bytes, TRUE, ipp_alphaComp_argb(src1, bytes, src2, bytes, dst, bytes,
size, size)); size, size));

View File

@ -287,7 +287,7 @@ STD_SPEED_TEST(set32s_speed_test, INT32, INT32, dst=dst,
#ifdef WITH_SSE2 #ifdef WITH_SSE2
TRUE, sse2_set_32s(constant, dst, size), PF_XMMI64_INSTRUCTIONS_AVAILABLE, FALSE, TRUE, sse2_set_32s(constant, dst, size), PF_XMMI64_INSTRUCTIONS_AVAILABLE, FALSE,
#else #else
FALSE, NULL, 0, FALSE, FALSE, PRIM_NOP, 0, FALSE,
#endif #endif
TRUE, ippsSet_32s(constant, dst, size)); TRUE, ippsSet_32s(constant, dst, size));