aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr55191.c
blob: 568425ce038e90142d7e1ceae8c860f6d34c694c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR tree-optimization/55191 */
/* { dg-do compile } */
/* { dg-options "-O2" } */

int a, b;

void f(void)
{
  b = a || b;

  for(a = 0; a < 2; a++);
  while(1);
}