Add new test to verify that the array index, limit, and stride are
[official-gcc.git] / gcc / testsuite / gcc.dg / uninit-B-2.c
blobee8a885817bd21a78e9ad8c9084820c9a7e34f23
1 /* Origin: PR c/179 inverse of uninit-B-O0.c, we should not warn. */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -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);