Skip to content

Commit

Permalink
Actually enable the winch calling convention
Browse files Browse the repository at this point in the history
  • Loading branch information
elliottt committed Mar 13, 2024
1 parent 0378791 commit b5162c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/cranelift/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ fn wasm_call_signature(
}

// The winch calling convention is only implemented for x64 and aarch64
arch if tunables.tail_callable => {
arch if tunables.winch_callable => {
assert!(
matches!(arch, Architecture::X86_64 | Architecture::Aarch64(_)),
"https://github.com/bytecodealliance/wasmtime/issues/6530"
Expand Down

0 comments on commit b5162c3

Please sign in to comment.