PR libfortran/64770 Segfault when trying to open existing file with status="new".
[official-gcc.git] / gcc / testsuite / gcc.dg / graphite / id-27.c
blobd2d4cd36bb8538c7b7e9d6fa6e91d8471439a242
1 /* { dg-options "-O2 -fgraphite-identity -flto" { target lto } } */
3 typedef long ll;
4 void foo (int n, ll *p)
6 while (n--)
7 *p += *p;
10 typedef long long lll;
11 void bar (int n, lll *p)
13 while (n--)
14 *p += *p;
17 int main() { return 0; }