blob: dfa3de97e0ca89644e986edff7e2ba9b21f97b5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* Origin: PR c/179 inverse of uninit-B-O0.c, we should not warn. */
/* { dg-do compile } */
/* { dg-options "-O0 -Wuninitialized" } */
extern void foo (int *);
extern void bar (int);
void
baz (void)
{
int i;
foo (&i); /* { dg-bogus "is used uninitialized" "uninit i warning" } */
if (i)
bar (i);
}
|