summaryrefslogtreecommitdiff
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
commit0abfa1c532bfa73eccdb5e8f05957c0935f5b1d9 (patch)
tree525b8c698c7e6d21eaa5c466701d0a7cc6198540 /iseq.c
parentd99bcbe583eb9f95022f8bcc51674cbdecf40d3b (diff)
* parse.y (assignable_gen): no need to generate NODE_CVDECL.
* compile.c (iseq_compile_each): no NODE_CVDECL. git-svn-id: svn+ssh://ci.ruby-lang.org/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 e199e49864..b765001bea 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: