Rebase.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr60766.c
blob6f16e3b7408b1c50eadb08ce621d4050bb419067
1 /* { dg-do run } */
3 int m = 9;
5 int main()
7 int n, x;
9 n = m;
10 for (x = 0; x <= n; x++)
11 if (n == x + (x + 1) + (x + 2))
12 return 0;
14 __builtin_abort();