summaryrefslogtreecommitdiff
path: root/insns.def
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-03-06 22:03:39 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2023-03-06 22:29:35 -0800
commit290e26c729a083f4461d2497099d9e7eee814228 (patch)
treea8f7086b396cb4c9fcca132707a8f90036e5a0a7 /insns.def
parent7fb36a0054436369aa2868490e2d102d8e75929c (diff)
Remove obsoleted MJIT_HEADER macro
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/7461
Diffstat (limited to 'insns.def')
-rw-r--r--insns.def4
1 files changed, 0 insertions, 4 deletions
diff --git a/insns.def b/insns.def
index 9f5ee7095a..c6284ee444 100644
--- a/insns.def
+++ b/insns.def
@@ -1345,10 +1345,8 @@ opt_aset_with
val = tmp;
}
else {
-#ifndef MJIT_HEADER
TOPN(0) = rb_str_resurrect(key);
PUSH(val);
-#endif
CALL_SIMPLE_METHOD();
}
}
@@ -1365,9 +1363,7 @@ opt_aref_with
val = vm_opt_aref_with(recv, key);
if (val == Qundef) {
-#ifndef MJIT_HEADER
PUSH(rb_str_resurrect(key));
-#endif
CALL_SIMPLE_METHOD();
}
}