Skip to content

Commit 2a29afe

Browse files
committed
Revert "ZJIT: Expand definition of unspecializable to more complex cases"
This reverts commit 4d28732.
1 parent f3b9ea4 commit 2a29afe

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

zjit/src/hir.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5399,8 +5399,7 @@ fn unspecializable_c_call_type(flags: u32) -> bool {
53995399
fn unspecializable_call_type(flags: u32) -> bool {
54005400
((flags & VM_CALL_ARGS_SPLAT) != 0) ||
54015401
((flags & VM_CALL_KW_SPLAT) != 0) ||
5402-
((flags & VM_CALL_ARGS_BLOCKARG) != 0) ||
5403-
((flags & VM_CALL_FORWARDING) != 0)
5402+
((flags & VM_CALL_ARGS_BLOCKARG) != 0)
54045403
}
54055404

54065405
/// We have IseqPayload, which keeps track of HIR Types in the interpreter, but this is not useful

0 commit comments

Comments
 (0)