aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr68129_1.c
blob: 112331e665dc8d6e6c661b3942799fec38be1deb (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
/* { dg-options "-O -fno-split-wide-types" } */

typedef int V __attribute__ ((vector_size (8 * sizeof (int))));

void
foo (V *p, V *q)
{
  *p = (*p == *q);
}