]> git.lizzy.rs Git - rust.git/blob - src/librustc_target/spec/arm_base.rs
Auto merge of #67458 - pnkfelix:fix-66530-by-propagating-fatal-error-from-worker...
[rust.git] / src / librustc_target / spec / arm_base.rs
1 use crate::spec::abi::Abi;
2
3 // All the calling conventions trigger an assertion(Unsupported calling convention) in llvm on arm
4 pub fn abi_blacklist() -> Vec<Abi> {
5     vec![Abi::Stdcall, Abi::Fastcall, Abi::Vectorcall, Abi::Thiscall, Abi::Win64, Abi::SysV64]
6 }