aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/pr70571.C
blob: 2381bfe589cf817ebb6a32ce13b7bcebe74af7fe (plain)
1
2
3
4
5
6
7
8
9
10
// 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);
}