URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [uninit-pr19430-2.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O -Wuninitialized" } */ int *p, *q; int foo (int b) { int i, j = 0; int *x; p = &i; q = &j; if (b) x = p; else x = q; return *x; }
Go to most recent revision | Compare with Previous | Blame | View Log