]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/uninit-pr40943.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / uninit-pr40943.c
CommitLineData
1768a052
JJ
1/* PR middle-end/40943 */
2/* { dg-do compile } */
3/* { dg-options "-O2 -Wuninitialized" } */
4
5void
6foo (void)
7{
8 int *p;
9 *p = 3; /* { dg-warning "is used uninitialized" } */
10}