URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [uninit-14.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR 24931 */ /* { dg-do compile } */ /* { dg-options "-O -Wuninitialized" } */ struct p { short x, y; }; struct s { int i; struct p p; }; struct s f() { struct s s; s.p = (struct p){}; s.i = (s.p.x || s.p.y); return s; }
Go to most recent revision | Compare with Previous | Blame | View Log