URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libmudflap/] [testsuite/] [libmudflap.c/] [pass11-frag.c] - Rev 848
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> #include <stdlib.h> #include <string.h> int main () { int i = 10; char *x = (char *) malloc (i * sizeof (char)); while (--i) { ++x; *x = 0; } return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log