URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [libmudflap/] [testsuite/] [libmudflap.c/] [pass15-frag.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> #include <stdlib.h> #include <string.h> int main () { struct base { int basic; }; struct derived { struct base common; char extra; }; struct derived d; struct base *bp; bp = (struct base *)&d; bp->basic = 10; ((struct derived *)bp)->extra = 'x'; return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log