aboutsummaryrefslogtreecommitdiffstats
path: root/tool/ruby_vm/models
diff options
context:
space:
mode:
Diffstat (limited to 'tool/ruby_vm/models')
-rwxr-xr-xtool/ruby_vm/models/bare_instructions.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/tool/ruby_vm/models/bare_instructions.rb b/tool/ruby_vm/models/bare_instructions.rb
index 7e573240b5..d2ff1341a0 100755
--- a/tool/ruby_vm/models/bare_instructions.rb
+++ b/tool/ruby_vm/models/bare_instructions.rb
@@ -101,8 +101,8 @@ class RubyVM::BareInstructions
}.join
end
- def handles_frame?
- /\b(false|0)\b/ !~ @attrs['handles_frame'].expr.expr
+ def handles_sp?
+ /\b(false|0)\b/ !~ @attrs['handles_sp'].expr.expr
end
def inspect
@@ -129,7 +129,7 @@ class RubyVM::BareInstructions
generate_attribute 'rb_num_t', 'retn', rets.size
generate_attribute 'rb_num_t', 'width', width
generate_attribute 'rb_snum_t', 'sp_inc', rets.size - pops.size
- generate_attribute 'bool', 'handles_frame', false
+ generate_attribute 'bool', 'handles_sp', false
end
def typesplit a