Fix make-array transforms.
[sbcl.git] / tests / alloca.c
1 #include <string.h>
2
3 #define SIZE 128*1024 // twice the largest page size
4 void alloca_test()
5 {
6   void* foo = alloca(SIZE);
7   memset(foo, 0xff, SIZE);
8 }