modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr53748.c (about)

     1  /* PR tree-optimization/53748 */
     2  
     3  typedef unsigned int V __attribute__ ((__vector_size__ (sizeof (int) * 4)));
     4  
     5  void
     6  foo (int x, V *y)
     7  {
     8    *y = x ? ((V) { ~0U, ~0U, ~0U, ~0U }) : ((V) { 0, 0, 0, 0 });
     9  }