]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/abi-sysv64.rs
Rollup merge of #82490 - ehuss:update-cargo, r=ehuss
[rust.git] / src / test / codegen / abi-sysv64.rs
1 // Checks if the correct annotation for the sysv64 ABI is passed to
2 // llvm. Also checks that the abi-sysv64 feature gate allows usage
3 // of the sysv64 abi.
4
5 // ignore-arm
6 // ignore-aarch64
7 // ignore-riscv64 sysv64 not supported
8
9 // compile-flags: -C no-prepopulate-passes
10
11 #![crate_type = "lib"]
12
13 // CHECK: define x86_64_sysvcc i64 @has_sysv64_abi
14 #[no_mangle]
15 pub extern "sysv64" fn has_sysv64_abi(a: i64) -> i64 {
16     a * 2
17 }