summaryrefslogtreecommitdiff
path: root/tool/ruby_vm
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-03-06 23:04:27 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2023-03-06 23:05:50 -0800
commit011c08b643757b2369f28fcae190ad1e98623789 (patch)
tree6e8e0bb8029e9d4a317ebf4669215a3af6d605fe /tool/ruby_vm
parentfd4a397e88f61b4261dd54dae77571ec5951ec94 (diff)
downloadruby-011c08b643757b2369f28fcae190ad1e98623789.tar.gz
Remove obsoleted mjit_sp_inc.inc.erb
Diffstat (limited to 'tool/ruby_vm')
-rw-r--r--tool/ruby_vm/views/mjit_sp_inc.inc.erb17
1 files changed, 0 insertions, 17 deletions
diff --git a/tool/ruby_vm/views/mjit_sp_inc.inc.erb b/tool/ruby_vm/views/mjit_sp_inc.inc.erb
deleted file mode 100644
index 7b925420dd..0000000000
--- a/tool/ruby_vm/views/mjit_sp_inc.inc.erb
+++ /dev/null
@@ -1,17 +0,0 @@
-static rb_snum_t
-mjit_call_attribute_sp_inc(const int insn, const VALUE *operands)
-{
- switch (insn) {
-% (RubyVM::BareInstructions.to_a + RubyVM::OperandsUnifications.to_a).each do |insn|
- case BIN(<%= insn.name %>): {
-% # compiler: Prepare operands which may be used by `insn.call_attribute`
-% insn.opes.each_with_index do |ope, i|
- MAYBE_UNUSED(<%= ope.fetch(:decl) %>) = (<%= ope.fetch(:type) %>)operands[<%= i %>];
-% end
- return <%= insn.call_attribute('sp_inc') %>;
- }
-% end
- default:
- rb_bug("unexpected insn in mjit_call_attribute_sp_inc");
- }
-}