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