mve: Fix vsetq_lane for 64-bit elements with lane 1 [PR 115611]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr98117.c
blobf2160257263b86f34b965bfdc83049a7161c7a6b
1 /* { dg-do run } */
2 /* { dg-additional-options "-fno-tree-scev-cprop" } */
4 unsigned char c;
5 void __attribute__((noipa))
6 e()
8 do
11 while (++c);
13 int main()
15 e();
16 if (c != 0)
17 __builtin_abort ();
18 return 0;