7 lines
264 B
Rust
7 lines
264 B
Rust
use crate::spec::abi::Abi;
|
|
|
|
// All the calling conventions trigger an assertion(Unsupported calling convention) in llvm on arm
|
|
pub fn unsupported_abis() -> Vec<Abi> {
|
|
vec![Abi::Stdcall, Abi::Fastcall, Abi::Vectorcall, Abi::Thiscall, Abi::Win64, Abi::SysV64]
|
|
}
|