URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [pr44555.c] - Rev 297
Go to most recent revision | Compare with Previous | Blame | View Log
struct a { char b[100]; }; int foo(struct a *a) { if (&a->b) return 1; return 0; } extern void abort (void); int main() { if (foo((struct a *)0) != 0) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log