(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr54920.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-fno-common" { target { hppa*-*-hpux* } } } */
       3  
       4  typedef short __v8hi __attribute__ ((__vector_size__ (16)));
       5  typedef long long __m128i __attribute__ ((__vector_size__ (16)));
       6  int a;
       7  __m128i b;
       8  
       9  void
      10  fn1 ()
      11  {
      12    while (1)
      13      b = (__m128i) (__v8hi) { a, 0, 0, 0, 0, 0 };
      14  }