mve: Fix vsetq_lane for 64-bit elements with lane 1 [PR 115611]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr51245.c
blobe5e2ded1308ea6e79bd922694397b5b2390c212e
1 /* { dg-do compile } */
3 struct S { int s; } a, *b, **c;
4 int d;
6 struct S
7 foo (void)
9 struct S s = { 0 }, *e = &a;
10 if (d)
11 **c = *b;
12 while (1)
14 *b = s;
15 *e = *b;
16 if (a.s)
17 break;
19 return **c;