aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/warn-vect-op-3.c
blob: bdbd8b520b79734a4c8704ca22eed2788b9e2c45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile { target { ! { ia32 } } } }  */
/* { dg-options "-mno-sse -Wvector-operation-performance" }  */
#define vector(elcount, type)  \
__attribute__((vector_size((elcount)*sizeof(type)))) type

int main (int argc, char *argv[])
{
  vector (8, short) v0 = {argc, 1, 15, 38, 12, -1, argc, 2};
  vector (8, short) v1 = {-4, argc, 2, 11, 1, 17, -8, argc};
  vector (8, short) res[] = 
  {
    v0 + v1,	      /* { dg-warning "expanded in parallel" }  */
    v0 - v1,          /* { dg-warning "expanded in parallel" }  */
    v0 > v1,          /* { dg-warning "expanded piecewise" }  */
    v0 & v1,          /* { dg-warning "expanded in parallel" }  */
    __builtin_shuffle (v0, v1),	      /* { dg-warning "expanded piecewise" }  */
    __builtin_shuffle (v0, v1, v1)    /* { dg-warning "expanded piecewise" }  */
  };
  
  return res[argc][argc];
}