1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_4@586 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 1999-12-08 05:35:58 +00:00
parent 1d9aaa67f3
commit ea14c6e09a
7 changed files with 29 additions and 27 deletions

3
gc.c
View file

@ -896,7 +896,8 @@ rb_gc()
alloca(0);
# define STACK_END (&stack_end)
#else
# define STACK_END alloca(1)
VALUE *stack_end = alloca(1);
# define STACK_END (stack_end)
#endif
alloc_objects = 0;