aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/uninit-pred-7_b.c
blob: 338d18c95e3f491b5dd7fec75a29b730634ad851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

/* { dg-do compile } */
/* { dg-options "-Wuninitialized -O2" } */

int g;
void bar();
void blah(int);

int foo (int n, int l, int m, int r)
{
  int v;

  if (n > 10)
    v = r;

  if (m) g++;
  else   bar();

  if (( n > 10) || (l != 100))
      blah (v); /* { dg-warning "uninitialized" "warning" } */

  return 0;
}