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/] [pass21-frag.c] - Rev 308
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> #include <stdlib.h> #include <string.h> #ifndef __FreeBSD__ #include <alloca.h> #endif int main () { char *boo, *foo; boo = (char *) alloca (100); boo[99] = 'a'; foo = (char *) __builtin_alloca (200); foo[44] = 'b'; return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log