aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
blob: 6fecf926208e946b3caa7371217b4f2fb0b0c15f (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 (4, int) v0 = {argc, 1, 15, 38};
  vector (4, int) v1 = {-4, argc, 2, 11};
  vector (4, int) res[] = 
  {
    v0 + v1,	  /* { dg-warning "expanded piecewise" }  */
    v0 - v1,	  /* { dg-warning "expanded piecewise" }  */
    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];
}