xref: /openbsd-src/gnu/gcc/libmudflap/testsuite/libmudflap.c/hook2-allocstuff.c (revision 53555c846a0a6f917dbd0a191f826da995ab1c42)
1 /* Generates recursive malloc call on i386-freebsd4.10 with -fmudflap.  */
2 #include <stdlib.h>
3 
4 int
5 main (void)
6 {
7   char *p = malloc (1<<24);
8   return 0;
9 }
10