URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20080604-1.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
struct barstruct { char const* some_string; } x; extern void abort (void); void __attribute__((noinline)) foo(void) { if (!x.some_string) abort (); } void baz(int b) { struct barstruct bar; struct barstruct* barptr; if (b) barptr = &bar; else { barptr = &x + 1; barptr = barptr - 1; } barptr->some_string = "Everything OK"; foo(); barptr->some_string = "Everything OK"; } int main() { x.some_string = (void *)0; baz(0); if (!x.some_string) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log