summaryrefslogtreecommitdiff
path: root/yjit/src/codegen.rs
diff options
context:
space:
mode:
Diffstat (limited to 'yjit/src/codegen.rs')
-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 9ec6c26f89..8e36c44823 100644
--- a/yjit/src/codegen.rs
+++ b/yjit/src/codegen.rs
@@ -5073,7 +5073,7 @@ fn gen_send_iseq(
}
let recv_type = if captured_self {
- ctx.get_opnd_type(CapturedSelfOpnd)
+ Type::Unknown // we don't track the type information of captured->self for now
} else {
ctx.get_opnd_type(StackOpnd(argc.try_into().unwrap()))
};