diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-02-13 09:10:55 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-02-13 09:10:55 +0000 |
| commit | a710af77c9728b7347e7db36a6f64df7d68b690d (patch) | |
| tree | 8820bbe1bb80a8ce542b3e6105fcd7c306d38502 /gc.c | |
| parent | 581135e4fd4f0c44435f5bb1b62c0fad45d26215 (diff) | |
| download | ruby-a710af77c9728b7347e7db36a6f64df7d68b690d.tar.gz ruby-a710af77c9728b7347e7db36a6f64df7d68b690d.tar.xz ruby-a710af77c9728b7347e7db36a6f64df7d68b690d.zip | |
* eval.c (rb_call0): argument update propagation. [ruby-dev:28044]
* env.h: remove argc member from struct FRAME.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9920 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
| -rw-r--r-- | gc.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -816,6 +816,7 @@ gc_mark_children(ptr, lev) case NODE_MODULE: case NODE_ALIAS: case NODE_VALIAS: + case NODE_ARGS: gc_mark((VALUE)obj->as.node.u1.node, lev); /* fall through */ case NODE_METHOD: /* 2 */ @@ -845,7 +846,6 @@ gc_mark_children(ptr, lev) case NODE_NEXT: case NODE_YIELD: case NODE_COLON2: - case NODE_ARGS: case NODE_SPLAT: case NODE_TO_ARY: case NODE_SVALUE: @@ -1265,7 +1265,6 @@ void rb_gc_mark_frame(frame) struct FRAME *frame; { - mark_locations_array(frame->argv, frame->argc); gc_mark((VALUE)frame->node, 0); } |
