gcc/gcc/testsuite/gcc.dg/pr68129_1.c

11 lines
183 B
C

/* { 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);
}