]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/uninit-I-O0.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / uninit-I-O0.c
CommitLineData
2dc74010
RG
1/* { dg-do compile } */
2/* { dg-options "-Wuninitialized" } */
3
4int sys_msgctl (void)
5{
61c7fb30
EB
6 struct { int mode; } setbuf;
7 return setbuf.mode; /* { dg-warning "'setbuf\.mode' is used uninitialized in this function" } */
2dc74010 8}