aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr53748.c
blob: 9aad70dd73aa3a36154010941877a5c8ef1e75f0 (plain)
1
2
3
4
5
6
7
8
9
/* PR tree-optimization/53748 */

typedef unsigned int V __attribute__ ((__vector_size__ (sizeof (int) * 4)));

void
foo (int x, V *y)
{
  *y = x ? ((V) { ~0U, ~0U, ~0U, ~0U }) : ((V) { 0, 0, 0, 0 });
}