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