mve: Fix vsetq_lane for 64-bit elements with lane 1 [PR 115611]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr56778.c
bloba1eea497de291a169bd599fcd33922a4b725004f
1 /* { dg-do compile } */
2 /* { dg-options "-march=core-avx2" { target i?86-*-* x86_64-*-* } } */
4 typedef struct {
5 float a,b,c;
6 } S;
8 S * arr[100];
10 void bar (float *in[], int n)
12 int i;
13 for (i=0; i<n; i++)
14 (*in)[i] = -arr[i]->b;