summaryrefslogtreecommitdiff
path: root/libmudflap/testsuite/libmudflap.c/hook2-allocstuff.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmudflap/testsuite/libmudflap.c/hook2-allocstuff.c')
-rw-r--r--libmudflap/testsuite/libmudflap.c/hook2-allocstuff.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/libmudflap/testsuite/libmudflap.c/hook2-allocstuff.c b/libmudflap/testsuite/libmudflap.c/hook2-allocstuff.c
deleted file mode 100644
index d8fbec4676d..00000000000
--- a/libmudflap/testsuite/libmudflap.c/hook2-allocstuff.c
+++ /dev/null
@@ -1,9 +0,0 @@
-/* Generates recursive malloc call on i386-freebsd4.10 with -fmudflap. */
-#include <stdlib.h>
-
-int
-main (void)
-{
- char *p = malloc (1<<24);
- return 0;
-}