URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [libmudflap/] [testsuite/] [libmudflap.c/] [pass12-frag.c] - Rev 832
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; int *x = (int *) malloc (i * sizeof (int)); while (--i) { ++x; *x = 0; } return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log