mve: Fix vsetq_lane for 64-bit elements with lane 1 [PR 115611]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr69715.c
blobcecc82cdf58418574b871e4392cba18f04fba4c3
1 /* { dg-do compile } */
3 struct __attribute__((may_alias)) S { long long low; int high; };
4 struct S foo (void);
5 long double
6 bar (void)
8 long double a;
9 *(struct S *)&a = foo ();
10 return a;