OSDN Git Service

* gcc.gd/struct/wo_prof_global_var.c: Use uninitialized integer
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / uninit-I-O0.c
1 /* { dg-do compile } */
2 /* { dg-options "-Wuninitialized" } */
3
4 int sys_msgctl (void)
5 {
6   struct { int mode; } setbuf;  /* { dg-warning "'setbuf\.mode' is used" {} { xfail *-*-* } } */
7   return setbuf.mode;
8 }