SVE Intrinsics: Change return type of redirect_call to gcall.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr51074.c
blobd6c8cea1f842e08436a3d04af513307d3e980d27
1 /* PR tree-optimization/51074 */
3 #include "tree-vect.h"
5 struct S { int a, b; } s[8];
7 int
8 main ()
10 int i;
11 check_vect ();
12 for (i = 0; i < 8; i++)
14 s[i].b = 0;
15 s[i].a = i;
17 asm volatile ("" : : : "memory");
18 #pragma GCC novector
19 for (i = 0; i < 8; i++)
20 if (s[i].b != 0 || s[i].a != i)
21 abort ();
22 return 0;