URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [libmudflap/] [testsuite/] [libmudflap.c/] [pass14-frag.c] - Rev 275
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> #include <stdlib.h> #include <string.h> int main () { struct a { int x; int y; char z; }; struct a k; struct a *p; p = &k; p->z = 'q'; return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log