aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20030331-1.c
blob: e5db36bf3698b3cc2b9a265f91f2b7f29bb3df18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* From PR/9301.  Fixed by ebotcazou's patch for PR/9493.  */

void bar (void);

void foo (int a, int b, int c, int d, int e)
{
  if (a)
    bar();
  if (b && c)
    ;
  if (d && e)
    ;
}