evas: silence warning for SSE3 optimization.

This commit is contained in:
Cedric BAIL 2017-06-05 12:00:41 -07:00
parent 3fadc0d5af
commit 29ba7f82e4
1 changed files with 19 additions and 16 deletions

View File

@ -415,13 +415,16 @@ mul3_sym_sse3(__m128i x, __m128i y) {
\
while(LENGTH) { \
switch(LENGTH) { \
case 3: UOP \
case 2: UOP \
case 1: UOP \
case 3: UOP; EINA_FALLTHROUGH; \
case 2: UOP; EINA_FALLTHROUGH; \
case 1: UOP; \
break; \
case 7: \
EINA_FALLTHROUGH; \
case 6: \
EINA_FALLTHROUGH; \
case 5: \
EINA_FALLTHROUGH; \
case 4: \
A4OP \
break; \