summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-08-06 03:10:24 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-08-06 03:10:24 +0000
commit3955aef501ee1ca2c9a86ba4701966b9691e7127 (patch)
treef733165963c0f6cfbc9cbccfb75ee5abddd53600 /gc.c
parent42d1f98904d075471b46f3b40408c8118e680338 (diff)
* struct.c (rb_struct_modify): should check frozen and taint
status. * eval.c (rb_undefined): do not recurse if method_missing is undefined. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1668 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gc.c b/gc.c
index 3ebdb2b8d9..ef85a1a2b3 100644
--- a/gc.c
+++ b/gc.c
@@ -963,7 +963,7 @@ rb_gc()
alloca(0);
# define STACK_END (&stack_end)
#else
-# if defined(__GNUC__) && (defined(__i386__) || defined(__m68k__))
+# if defined(__GNUC__) && (defined(__i386__) || defined(__mc68000__))
VALUE *stack_end = __builtin_frame_address(0);
# else
VALUE *stack_end = alloca(1);