aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloca.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloca.cc')
-rw-r--r--src/alloca.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/alloca.cc b/src/alloca.cc
deleted file mode 100644
index a46c69b..0000000
--- a/src/alloca.cc
+++ /dev/null
@@ -1,20 +0,0 @@
-/**
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved. This file is offered as-is,
- * without any warranty.
- */
-#include <cstdlib>
-#include <alloca.h>
-
-int main(void)
-{
- char* a;
- size_t i;
-
- for (i = 0; i < 40000000UL; i++)
- a = (char*)alloca(16);
-
- return 0;
-}
-