Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.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; }