summaryrefslogtreecommitdiffstats
path: root/iseq.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-02 10:24:06 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-02 10:24:06 +0000
commit12aeeeaa3607a6e4696990986f7d76a847cc8a45 (patch)
tree525b8c698c7e6d21eaa5c466701d0a7cc6198540 /iseq.c
parent1b7c50a6b849135f4f34a199853ec797ed3b85af (diff)
downloadruby-12aeeeaa3607a6e4696990986f7d76a847cc8a45.tar.gz
ruby-12aeeeaa3607a6e4696990986f7d76a847cc8a45.tar.xz
ruby-12aeeeaa3607a6e4696990986f7d76a847cc8a45.zip
* parse.y (assignable_gen): no need to generate NODE_CVDECL.
* compile.c (iseq_compile_each): no NODE_CVDECL. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11614 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/iseq.c b/iseq.c
index e199e4986..b765001be 100644
--- a/iseq.c
+++ b/iseq.c
@@ -867,8 +867,6 @@ node_name(int node)
return "NODE_CDECL";
case NODE_CVASGN:
return "NODE_CVASGN";
- case NODE_CVDECL:
- return "NODE_CVDECL";
case NODE_OP_ASGN1:
return "NODE_OP_ASGN1";
case NODE_OP_ASGN2: