diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-24 14:29:57 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-24 14:29:57 +0000 |
| commit | 62084e4e1ffe296f47458cb586b6a44ff6f0bf03 (patch) | |
| tree | 973380ff6dd7139e5bb956520351893fd52e4292 /gc.c | |
| parent | 8671cefc2e5bc6a00a82e0e1dd148e6f23aacdf8 (diff) | |
| download | ruby-62084e4e1ffe296f47458cb586b6a44ff6f0bf03.tar.gz ruby-62084e4e1ffe296f47458cb586b6a44ff6f0bf03.tar.xz ruby-62084e4e1ffe296f47458cb586b6a44ff6f0bf03.zip | |
* gc.c (gc_mark_children): NODE_POSTEXE holds Ruby VALUE.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@11008 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
| -rw-r--r-- | gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -835,6 +835,7 @@ gc_mark_children(ptr, lev) case NODE_OPT_N: case NODE_EVSTR: case NODE_UNDEF: + case NODE_POSTEXE: ptr = (VALUE)obj->as.node.u2.node; goto again; @@ -881,7 +882,6 @@ gc_mark_children(ptr, lev) case NODE_FALSE: case NODE_ATTRSET: case NODE_BLOCK_ARG: - case NODE_POSTEXE: break; case NODE_ALLOCA: mark_locations_array((VALUE*)obj->as.node.u1.value, |
