URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [libmudflap/] [testsuite/] [libmudflap.c/] [pass11-frag.c] - Rev 308
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