ruby-changes:35503
From: normal <ko1@a...>
Date: Sun, 14 Sep 2014 16:58:39 +0900 (JST)
Subject: [ruby-changes:35503] normal:r47585 (trunk): vm.inc.tmpl + instruction.rb: typo fixes
normal 2014-09-14 16:58:25 +0900 (Sun, 14 Sep 2014) New Revision: 47585 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=47585 Log: vm.inc.tmpl + instruction.rb: typo fixes * template/vm.inc.tmpl: "insns.c" => "insns.def" * tool/instruction.rb: typo fix Modified files: trunk/ChangeLog trunk/template/vm.inc.tmpl trunk/tool/instruction.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 47584) +++ ChangeLog (revision 47585) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sun Sep 14 16:57:27 2014 Eric Wong <e@8...> + + * template/vm.inc.tmpl: "insns.c" => "insns.def" + * tool/instruction.rb: typo fix + Sun Sep 14 12:29:52 2014 SHIBATA Hiroshi <shibata.hiroshi@g...> * test/test_tracer.rb: fixed testcase for rubygems update. Index: tool/instruction.rb =================================================================== --- tool/instruction.rb (revision 47584) +++ tool/instruction.rb (revision 47585) @@ -309,7 +309,7 @@ class RubyVM https://github.com/ruby/ruby/blob/trunk/tool/instruction.rb#L309 opes = insn.opes if opes.size != opts.size - raise "operand size mismatcvh for #{insn.name} (opes: #{opes.size}, opts: #{opts.size})" + raise "operand size mismatch for #{insn.name} (opes: #{opes.size}, opts: #{opts.size})" end ninsn = insn.name + '_OP_' + opts.map{|e| label_escape(e)}.join('_') Index: template/vm.inc.tmpl =================================================================== --- template/vm.inc.tmpl (revision 47584) +++ template/vm.inc.tmpl (revision 47585) @@ -8,7 +8,7 @@ https://github.com/ruby/ruby/blob/trunk/template/vm.inc.tmpl#L8 This file is auto generated by insns2vm.rb DO NOT TOUCH! - If you want to fix something, you must edit 'insns.c' + If you want to fix something, you must edit 'insns.def' */ <%= -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/