URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.dg/] [uninit-G.c] - Rev 12
Compare with Previous | Blame | View Log
/* Test we do not warn about initializing variable with address of self in the initialization. */ /* { dg-do compile } */ /* { dg-options "-O -Wuninitialized" } */ void *f() { void *i = &i; return i; }