summaryrefslogtreecommitdiffstats
path: root/yarvcore.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-21 11:15:15 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-21 11:15:15 +0000
commit3f8217eff09a55e66cc3bcace02f1f207dadda3d (patch)
treee50ce2d744f47f485bc2d1a4bb7eae57f5a9ed87 /yarvcore.c
parent08f957db2d9999cee3dc0493d5488e8ab3f6c685 (diff)
downloadruby-3f8217eff09a55e66cc3bcace02f1f207dadda3d.tar.gz
ruby-3f8217eff09a55e66cc3bcace02f1f207dadda3d.tar.xz
ruby-3f8217eff09a55e66cc3bcace02f1f207dadda3d.zip
* compile.c, parse.y, eval.c, intern.h, iseq.c, lex.c, node.h,
proc.c, vm.c, vm_macro.def, vm_macro.def, yarvcore.c, yarvcore.h, debug.c, debug.h: merge half-baked-1.9 changes. The biggest change is to change node structure around NODE_SCOPE, NODE_ARGS. Every scope (method/class/block) has own NODE_SCOPE node and NODE_ARGS represents more details of arguments information. I'll write a document about detail of node structure. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12117 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'yarvcore.c')
-rw-r--r--yarvcore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/yarvcore.c b/yarvcore.c
index b8f06ab6d..75a37b695 100644
--- a/yarvcore.c
+++ b/yarvcore.c
@@ -16,6 +16,7 @@
#include "yarvcore.h"
#include "gc.h"
+
VALUE rb_cVM;
VALUE rb_cThread;
@@ -216,7 +217,6 @@ thread_free(void *ptr)
if (ptr) {
th = ptr;
FREE_UNLESS_NULL(th->stack);
- FREE_UNLESS_NULL(th->top_local_tbl);
if (th->local_storage) {
st_free_table(th->local_storage);