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/trunk@1059 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shugo 2000-12-07 08:38:39 +00:00
parent 598d8ada31
commit a721bd628e
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Thu Dec 7 17:35:51 2000 Shugo Maeda <shugo@ruby-lang.org>
* eval.c (stack_length): don't use __builtin_frame_address() on alpha.
Wed Dec 6 18:07:13 2000 WATANABE Hirofumi <eban@ruby-lang.org>
* djgpp/config.sed, win32/Makefile.sub: typo.

2
eval.c
View file

@ -4037,7 +4037,7 @@ stack_length(p)
alloca(0);
# define STACK_END (&stack_end)
#else
# if defined(__GNUC__)
# if defined(__GNUC__) && !defined(__alpha__)
VALUE *stack_end = __builtin_frame_address(0);
# else
VALUE *stack_end = alloca(1);