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.
arm
aapcs
1 parent d74cd11 commit f2e6bb2Copy full SHA for f2e6bb2
compiler/rustc_target/src/spec/mod.rs
@@ -2821,7 +2821,9 @@ impl Target {
2821
Abi::System { unwind } if self.is_like_windows && self.arch == "x86" && !c_variadic => {
2822
Abi::Stdcall { unwind }
2823
}
2824
- Abi::System { unwind } if self.is_like_vexos && !c_variadic => Abi::Aapcs { unwind },
+ Abi::System { unwind } if self.is_like_vexos && self.arch == "arm" && !c_variadic => {
2825
+ Abi::Aapcs { unwind }
2826
+ }
2827
Abi::System { unwind } => Abi::C { unwind },
2828
Abi::EfiApi if self.arch == "arm" => Abi::Aapcs { unwind: false },
2829
Abi::EfiApi if self.arch == "x86_64" => Abi::Win64 { unwind: false },
0 commit comments