PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / uninit-B-O0-2.c
blobdfa3de97e0ca89644e986edff7e2ba9b21f97b5d
1 /* Origin: PR c/179 inverse of uninit-B-O0.c, we should not warn. */
2 /* { dg-do compile } */
3 /* { dg-options "-O0 -Wuninitialized" } */
4 extern void foo (int *);
5 extern void bar (int);
7 void
8 baz (void)
10 int i;
11 foo (&i); /* { dg-bogus "is used uninitialized" "uninit i warning" } */
12 if (i)
13 bar (i);