URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [uninit-12.c] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR 23497 */ /* { dg-do compile } */ /* { dg-options "-O -Wuninitialized" } */ typedef _Complex float C; C foo() { C f; __real__ f = 0; __imag__ f = 0; return f; }
Go to most recent revision | Compare with Previous | Blame | View Log