projects
/
sbcl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Clean up listify-rest-args VOP on x86-64.
[sbcl.git]
/
tests
/
alloca.c
1
#include <alloca.h>
2
#include <string.h>
3
4
#define SIZE 128*1024 // twice the largest page size
5
void alloca_test()
6
{
7
void* foo = alloca(SIZE);
8
memset(foo, 0xff, SIZE);
9
}