* gcc.dg/torture/stackalign/builtin-apply-2.c: Fix skip-if syntax.
[official-gcc.git] / gcc / testsuite / gcc.dg / graphite / pr19910.c
blob1ee0d213b8aaada81751229fbc246d84f9e3abc6
1 /* Contributed by Volker Reichelt <reichelt@gcc.gnu.org>. */
3 /* { dg-do compile } */
4 /* { dg-options "-O2 -ftree-loop-linear" } */
6 int a[3];
8 void foo()
10 int i, j;
12 for (i = 1; i >= 0; --i)
13 for (j = i; j >= 0; --j)
14 a[i+j] = 0;