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/] [20000801-3.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
/* Origin: PR c/92 from Simon Marlow <t-simonm@microsoft.com>, adapted to a testcase by Joseph Myers <jsm28@cam.ac.uk>. */ typedef struct { } empty; typedef struct { int i; empty e; int i2; } st; st s = { .i = 0, .i2 = 1 }; extern void abort (void); int main (void) { if (s.i2 == 1) exit (0); else abort (); }
Go to most recent revision | Compare with Previous | Blame | View Log