2019-02-08 21:00:07 +09:00
|
|
|
use crate::spec::abi::Abi;
|
2016-10-24 11:04:04 +02:00
|
|
|
|
|
|
|
|
// All the calling conventions trigger an assertion(Unsupported calling convention) in llvm on arm
|
2020-07-08 09:36:52 -04:00
|
|
|
pub fn unsupported_abis() -> Vec<Abi> {
|
2017-05-17 09:40:46 -04:00
|
|
|
vec![Abi::Stdcall, Abi::Fastcall, Abi::Vectorcall, Abi::Thiscall, Abi::Win64, Abi::SysV64]
|
2016-10-24 11:04:04 +02:00
|
|
|
}
|