URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20001203-1.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
/* Origin: PR c/410 from Jan Echternach <jan.echternach@informatik.uni-rostock.de>, adapted to a testcase by Joseph Myers <jsm28@cam.ac.uk>. */ extern void exit (int); static void foo (void) { struct { long a; char b[1]; } x = { 2, { 0 } }; } int main (void) { int tmp; foo (); tmp = 1; exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log