2022-02-18 23:32:37 +00:00
|
|
|
// ignore-tidy-linelength
|
|
|
|
|
|
|
|
#![feature(abi_vectorcall)]
|
|
|
|
|
2024-07-19 14:50:47 +00:00
|
|
|
//@ is "$.index[*][?(@.name=='abi_rust')].inner.function.header.abi" \"Rust\"
|
2022-02-18 23:32:37 +00:00
|
|
|
pub fn abi_rust() {}
|
|
|
|
|
2024-07-19 14:50:47 +00:00
|
|
|
//@ is "$.index[*][?(@.name=='abi_c')].inner.function.header.abi" '{"C": {"unwind": false}}'
|
2022-02-18 23:32:37 +00:00
|
|
|
pub extern "C" fn abi_c() {}
|
|
|
|
|
2024-07-19 14:50:47 +00:00
|
|
|
//@ is "$.index[*][?(@.name=='abi_system')].inner.function.header.abi" '{"System": {"unwind": false}}'
|
2022-02-18 23:32:37 +00:00
|
|
|
pub extern "system" fn abi_system() {}
|
|
|
|
|
2024-07-19 14:50:47 +00:00
|
|
|
//@ is "$.index[*][?(@.name=='abi_c_unwind')].inner.function.header.abi" '{"C": {"unwind": true}}'
|
2022-02-18 23:32:37 +00:00
|
|
|
pub extern "C-unwind" fn abi_c_unwind() {}
|
|
|
|
|
2024-07-19 14:50:47 +00:00
|
|
|
//@ is "$.index[*][?(@.name=='abi_system_unwind')].inner.function.header.abi" '{"System": {"unwind": true}}'
|
2022-02-18 23:32:37 +00:00
|
|
|
pub extern "system-unwind" fn abi_system_unwind() {}
|
|
|
|
|
2024-07-19 14:50:47 +00:00
|
|
|
//@ is "$.index[*][?(@.name=='abi_vectorcall')].inner.function.header.abi.Other" '"\"vectorcall\""'
|
2022-02-18 23:32:37 +00:00
|
|
|
pub extern "vectorcall" fn abi_vectorcall() {}
|
|
|
|
|
2024-07-19 14:50:47 +00:00
|
|
|
//@ is "$.index[*][?(@.name=='abi_vectorcall_unwind')].inner.function.header.abi.Other" '"\"vectorcall-unwind\""'
|
2022-02-18 23:32:37 +00:00
|
|
|
pub extern "vectorcall-unwind" fn abi_vectorcall_unwind() {}
|