blob: 2381bfe589cf817ebb6a32ce13b7bcebe74af7fe [file] [log] [blame]
// PR c++/70571
// { dg-do compile }
typedef int V __attribute__ ((vector_size (sizeof (int))));
void
foo (V *x, V *y, int z)
{
*x = (z == *y);
}