We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 055cfaf commit a5394aaCopy full SHA for a5394aa
compiler/rustc_codegen_cranelift/src/abi/mod.rs
@@ -22,7 +22,8 @@ fn clif_sig_from_fn_abi<'tcx>(
22
fn_abi: &FnAbi<'tcx, Ty<'tcx>>,
23
) -> Signature {
24
let call_conv = match fn_abi.conv {
25
- Conv::Rust | Conv::C | Conv::RustCold => default_call_conv,
+ Conv::Rust | Conv::C => default_call_conv,
26
+ Conv::RustCold => CallConv::Cold,
27
Conv::X86_64SysV => CallConv::SystemV,
28
Conv::X86_64Win64 => CallConv::WindowsFastcall,
29
Conv::ArmAapcs
0 commit comments