1 /* PR target/88070 */
2 /* { dg-do compile } */
3 /* { dg-options "-O -fexpensive-optimizations -fnon-call-exceptions -fschedule-insns -fno-dce -fno-dse -mavx" } */
4 
5 typedef float vfloat2 __attribute__ ((__vector_size__ (2 * sizeof (float))));
6 
7 vfloat2
test1float2(float c)8 test1float2 (float c)
9 {
10   vfloat2 v = { c, c };
11   return v;
12 }
13