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 2b0274c commit 5aa790aCopy full SHA for 5aa790a
compiler/rustc_target/src/spec/abi_map.rs
@@ -95,8 +95,7 @@ impl AbiMap {
95
return AbiMapping::Invalid;
96
}
97
98
- (ExternAbi::Cdecl { .. }, Arch::X86) => CanonAbi::C,
99
- (ExternAbi::Cdecl { .. }, _) => return AbiMapping::Deprecated(CanonAbi::C),
+ (ExternAbi::Cdecl { .. }, _) => CanonAbi::C,
100
101
(ExternAbi::Fastcall { .. }, Arch::X86) => CanonAbi::X86(X86Call::Fastcall),
102
(ExternAbi::Fastcall { .. }, _) if os == OsKind::Windows => {
0 commit comments