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 665bbf6 commit 10ae75dCopy full SHA for 10ae75d
compiler/rustc_target/src/spec/mod.rs
@@ -2815,7 +2815,9 @@ impl Target {
2815
Abi::System { unwind } if self.is_like_windows && self.arch == "x86" && !c_variadic => {
2816
Abi::Stdcall { unwind }
2817
}
2818
- 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 => {
2819
+ Abi::Aapcs { unwind }
2820
+ }
2821
Abi::System { unwind } => Abi::C { unwind },
2822
Abi::EfiApi if self.arch == "arm" => Abi::Aapcs { unwind: false },
2823
Abi::EfiApi if self.arch == "x86_64" => Abi::Win64 { unwind: false },
0 commit comments