URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [uninit-E.c] - Rev 816
Compare with Previous | Blame | View Log
/* Test we do warn about initializing variable with self when -Winit-self is supplied. */ /* { dg-do compile } */ /* { dg-options "-O -Wuninitialized -Winit-self" } */ int f() { int i = i; /* { dg-warning "i" "uninitialized variable warning" } */ return i; }