1 /* PR target/98100 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -mno-avx -fvar-tracking-assignments -g0" } */
4 
5 __attribute__((target_clones("default","avx2"))) void
foo()6 foo ()
7 {
8   __attribute__((__vector_size__(8 * sizeof(int)))) int b = {};
9 }
10