OSDN Git Service

2012-01-30 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / c-c++-common / uninit-G-O0.c
1 /* Test we do not warn about initializing variable with address of self in the initialization. */
2 /* { dg-do compile } */
3 /* { dg-options "-Wuninitialized" } */
4
5 void *f()
6 {
7   void *i = &i;
8   return i;
9 }