middle-end: copy STMT_VINFO_STRIDED_P when DR is replaced [PR116956]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr93491.c
blob2cb4c0ca7afe5da7fc5a13bb592682ddd65effb1
1 /* { dg-do run } */
3 extern void exit (int);
5 __attribute__((noipa))
6 void f(int i)
8 exit(i);
11 __attribute__((const,noipa))
12 int g(int i)
14 return 1 / i;
17 int main()
19 while (1)
21 f(0);
22 f(g(0));