From 8dbddd5bf8a2f36b0cd32d97f7f7fa383bbc5b64 Mon Sep 17 00:00:00 2001 From: John Hawthorn Date: Thu, 16 Mar 2023 13:08:13 -0700 Subject: Rename opes to operands Co-authored-by: Aaron Patterson --- tool/ruby_vm/views/lib/ruby_vm/rjit/instruction.rb.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tool/ruby_vm/views') diff --git a/tool/ruby_vm/views/lib/ruby_vm/rjit/instruction.rb.erb b/tool/ruby_vm/views/lib/ruby_vm/rjit/instruction.rb.erb index b32c1ea0be..84c2e92414 100644 --- a/tool/ruby_vm/views/lib/ruby_vm/rjit/instruction.rb.erb +++ b/tool/ruby_vm/views/lib/ruby_vm/rjit/instruction.rb.erb @@ -1,5 +1,5 @@ module RubyVM::RJIT # :nodoc: all - Instruction = Data.define(:name, :bin, :len, :opes) + Instruction = Data.define(:name, :bin, :len, :operands) INSNS = { % RubyVM::Instructions.each_with_index do |insn, i| @@ -7,7 +7,7 @@ module RubyVM::RJIT # :nodoc: all name: :<%= insn.name %>, bin: <%= i %>, # BIN(<%= insn.name %>) len: <%= insn.width %>, # insn_len - opes: <%= (insn.opes unless insn.name.start_with?('trace_')).inspect %>, + operands: <%= (insn.opes unless insn.name.start_with?('trace_')).inspect %>, ), % end } -- cgit v1.2.3