Add qdf24xx base tuning support.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr56264.c
blobca5eb47ff6b88489306f22bb542cc6d6026935af
1 /* { dg-do compile } */
2 /* { dg-options "-funswitch-loops" } */
4 int a, b, c;
6 void f(void)
8 if(b)
10 for(a = 0; a < 1; a++)
11 lbl:
12 c = c && b ? : 0;
14 c = 0;
15 goto lbl;
18 if(a)
19 goto lbl;