diff options
| author | shugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-12-07 08:38:39 +0000 |
|---|---|---|
| committer | shugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-12-07 08:38:39 +0000 |
| commit | 795ad7421b5624bfc77c1d86d5764bdd882bd4d4 (patch) | |
| tree | 2f7c9f54c65c72f9f9b24b1187d9edbdee0ecd50 | |
| parent | d2e13dc5cb7e726f99babbe4822f0c1dbe16c44f (diff) | |
| download | ruby-795ad7421b5624bfc77c1d86d5764bdd882bd4d4.tar.gz ruby-795ad7421b5624bfc77c1d86d5764bdd882bd4d4.tar.xz ruby-795ad7421b5624bfc77c1d86d5764bdd882bd4d4.zip | |
shugo
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1059 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | eval.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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. @@ -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); |
