We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c369a4 commit c1569ccCopy full SHA for c1569cc
src/abi/mod.rs
@@ -53,8 +53,7 @@ pub(crate) fn conv_to_call_conv(
53
default_call_conv: CallConv,
54
) -> CallConv {
55
match c {
56
- CanonAbi::Rust | CanonAbi::C => default_call_conv,
57
- CanonAbi::RustCold => CallConv::Cold,
+ CanonAbi::Rust | CanonAbi::RustCold | CanonAbi::C => default_call_conv,
58
59
// Functions with this calling convention can only be called from assembly, but it is
60
// possible to declare an `extern "custom"` block, so the backend still needs a calling
0 commit comments