blob: ee8a885817bd21a78e9ad8c9084820c9a7e34f23 [file] [log] [blame]
/* Origin: PR c/179 inverse of uninit-B-O0.c, we should not warn. */
/* { dg-do compile } */
/* { dg-options "-O2 -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);
}