]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/abi-x86-interrupt.rs
Rollup merge of #69311 - GuillaumeGomez:clean-up-e0321-e0322, r=Dylan-DPC
[rust.git] / src / test / codegen / abi-x86-interrupt.rs
1 // Checks if the correct annotation for the x86-interrupt ABI is passed to
2 // llvm. Also checks that the abi_x86_interrupt feature gate allows usage
3 // of the x86-interrupt abi.
4
5 // ignore-arm
6 // ignore-aarch64
7
8 // compile-flags: -C no-prepopulate-passes
9
10 #![crate_type = "lib"]
11 #![feature(abi_x86_interrupt)]
12
13 // CHECK: define x86_intrcc i64 @has_x86_interrupt_abi
14 #[no_mangle]
15 pub extern "x86-interrupt" fn has_x86_interrupt_abi(a: i64) -> i64 {
16     a * 2
17 }