summaryrefslogtreecommitdiff
path: root/yjit
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-08-05 11:37:51 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2022-08-29 08:47:08 -0700
commit2429635bc724c953bd653a9202c5e1768f61d254 (patch)
tree80e90daa6127b51e19f4a283f0daf45d32c7e543 /yjit
parentffdd09e22af4966f3d8f8ada7f9ee829ba9b9212 (diff)
Port send to the new backend and test it (https://github.com/Shopify/ruby/pull/373)
Diffstat (limited to 'yjit')
-rw-r--r--yjit/src/codegen.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit/src/codegen.rs b/yjit/src/codegen.rs
index 884a8344c2..76874cf758 100644
--- a/yjit/src/codegen.rs
+++ b/yjit/src/codegen.rs
@@ -5997,7 +5997,7 @@ fn get_gen_fn(opcode: VALUE) -> Option<InsnGenFn> {
//YARVINSN_getblockparamproxy => Some(gen_getblockparamproxy),
//YARVINSN_getblockparam => Some(gen_getblockparam),
YARVINSN_opt_send_without_block => Some(gen_opt_send_without_block),
- //YARVINSN_send => Some(gen_send),
+ YARVINSN_send => Some(gen_send),
//YARVINSN_invokesuper => Some(gen_invokesuper),
YARVINSN_leave => Some(gen_leave),