From f03e172936234e8ec8937dea8d12d6db9c2fdd14 Mon Sep 17 00:00:00 2001 From: ko1 Date: Tue, 1 Jul 2008 03:05:58 +0000 Subject: * compile.c, insns.def, vm.c, vm_core.h: remove some insns (undef, alias, definemethod). Call RubyVM::FrozenCore's singleton method instead. Add "putiseq" and "putspecialobject" instructions. * id.c, id.h: add ids for above. * tool/parse.rb: "VM" no longer exists. Use RubyVM instead. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17755 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/parse.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tool') diff --git a/tool/parse.rb b/tool/parse.rb index bf0bbc30a..6243d7aa8 100644 --- a/tool/parse.rb +++ b/tool/parse.rb @@ -6,7 +6,7 @@ puts '# ' + '-' * 70 puts $str puts '# ' + '-' * 70 -$parsed = VM::InstructionSequence.compile_file($file) +$parsed = RubyVM::InstructionSequence.compile_file($file) puts "# disasm result: " puts '# ' + '-' * 70 puts $parsed.disasm -- cgit