(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr70738-1.c
       1  /* { dg-do compile { target { ! ia32 } } } */
       2  /* { dg-options "-msse2 -mgeneral-regs-only" } */
       3  
       4  typedef int int32x2_t __attribute__ ((__vector_size__ ((8))));
       5  
       6  int32x2_t test (int32x2_t a, int32x2_t b) /* { dg-error "SSE register return with SSE disabled" } */
       7  {
       8    return a + b;
       9  }