repo.or.cz
/
sbcl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove unused new_space_p() on gencgc
[sbcl.git]
/
tests
/
alloca.c
blob
18c4b235f13943bddaa5df8873e48933fbbed491
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
}