]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_target/src/spec/arm_base.rs
Auto merge of #77618 - fusion-engineering-forks:windows-parker, r=Amanieu
[rust.git] / compiler / rustc_target / src / 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 unsupported_abis() -> Vec<Abi> {
5     vec![Abi::Stdcall, Abi::Fastcall, Abi::Vectorcall, Abi::Thiscall, Abi::Win64, Abi::SysV64]
6 }