1  /* PR target/80310 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O2 -fsanitize=signed-integer-overflow" } */
       4  /* { dg-additional-options "-mno-avx" { target i?86-*-* x86_64-*-* } } */
       5  
       6  typedef int V __attribute__((vector_size (32)));
       7  
       8  void
       9  foo (V *a, V *b, V *c)
      10  {
      11    *a = *b + *c;		/* { dg-bogus "AVX vector return without AVX enabled changes the ABI" "" { target i?86-*-* x86_64-*-* } } */
      12  }