shugo
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1059 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
598d8ada31
commit
a721bd628e
@ -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>
|
Wed Dec 6 18:07:13 2000 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||||
|
|
||||||
* djgpp/config.sed, win32/Makefile.sub: typo.
|
* djgpp/config.sed, win32/Makefile.sub: typo.
|
||||||
|
2
eval.c
2
eval.c
@ -4037,7 +4037,7 @@ stack_length(p)
|
|||||||
alloca(0);
|
alloca(0);
|
||||||
# define STACK_END (&stack_end)
|
# define STACK_END (&stack_end)
|
||||||
#else
|
#else
|
||||||
# if defined(__GNUC__)
|
# if defined(__GNUC__) && !defined(__alpha__)
|
||||||
VALUE *stack_end = __builtin_frame_address(0);
|
VALUE *stack_end = __builtin_frame_address(0);
|
||||||
# else
|
# else
|
||||||
VALUE *stack_end = alloca(1);
|
VALUE *stack_end = alloca(1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user