summaryrefslogtreecommitdiff
path: root/tool/parse.rb
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-01 03:05:58 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-01 03:05:58 +0000
commiteb33f91cb7a763331e210bc10fbdefa037366496 (patch)
tree8cce6055a148d92f34a5a9a5a8bdfe9831c2580a /tool/parse.rb
parent5c8ab4d9c2931c0e0f1ee58e516c91f1e9a47486 (diff)
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@17755 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/parse.rb')
-rw-r--r--tool/parse.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/parse.rb b/tool/parse.rb
index bf0bbc30af..6243d7aa8e 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