URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [libmudflap/] [testsuite/] [libmudflap.c/] [pass16-frag.c] - Rev 855
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 base *bp; bp = (struct base *) malloc (sizeof (struct derived)); bp->basic = 10; ((struct derived *)bp)->extra = 'x'; return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log