We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4889e82 commit 0a634e2Copy full SHA for 0a634e2
1 file changed
zjit/src/hir.rs
@@ -5292,7 +5292,9 @@ fn unspecializable_c_call_type(flags: u32) -> bool {
5292
/// If a given call uses overly complex arguments, then we won't specialize.
5293
fn unspecializable_call_type(flags: u32) -> bool {
5294
((flags & VM_CALL_ARGS_SPLAT) != 0) ||
5295
- ((flags & VM_CALL_ARGS_BLOCKARG) != 0)
+ ((flags & VM_CALL_KW_SPLAT) != 0) ||
5296
+ ((flags & VM_CALL_ARGS_BLOCKARG) != 0) ||
5297
+ ((flags & VM_CALL_FORWARDING) != 0)
5298
}
5299
5300
/// We have IseqPayload, which keeps track of HIR Types in the interpreter, but this is not useful
0 commit comments