view gcc/testsuite/gcc.c-torture/compile/pr53748.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

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