From 08c8605de91d2f04dcb53672a2eca6bd3f77bb18 Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 4 Oct 2012 13:52:20 +0000 Subject: * insns.def (getlocal, setlocal): remove old getlocal/setlocal instructions and rename getdaynmic/setdynamic instructions to getlocal/setlocal. * compile.c: ditto. * iseq.c: remove TS_DINDEX. * vm_exec.h (dindex_t): remove type definition of `dindex_t'. * tool/instruction.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37087 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/instruction.rb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'tool/instruction.rb') diff --git a/tool/instruction.rb b/tool/instruction.rb index 43b26b5c97..38318a435c 100755 --- a/tool/instruction.rb +++ b/tool/instruction.rb @@ -930,8 +930,6 @@ class RubyVM "TS_NUM" when /^lindex_t/ "TS_LINDEX" - when /^dindex_t/ - "TS_DINDEX" when /^VALUE/ "TS_VALUE" when /^ID/ @@ -957,7 +955,6 @@ class RubyVM 'TS_OFFSET' => 'O', 'TS_NUM' => 'N', 'TS_LINDEX' => 'L', - 'TS_DINDEX' => 'D', 'TS_VALUE' => 'V', 'TS_ID' => 'I', 'TS_GENTRY' => 'G', @@ -1064,7 +1061,7 @@ class RubyVM val = op[1] case type - when /^long/, /^rb_num_t/, /^lindex_t/, /^dindex_t/ + when /^long/, /^rb_num_t/, /^lindex_t/ "INT2FIX(#{val})" when /^VALUE/ val -- cgit v1.2.3