URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [20000623-1.c] - Rev 298
Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-options "-O3 -fno-strict-aliasing" } */ extern void exit (int); extern void abort (void); struct foos { int l; }; int foo; static struct foos *getfoo(void); int main (void) { struct foos *f = getfoo(); f->l = 1; foo = 2; if (f->l == 1) abort(); exit(0); } static struct foos *getfoo(void) { return (struct foos *)&foo; }