diff options
Diffstat (limited to 'tests/codegen-llvm/gpu-kernel-abi.rs')
| -rw-r--r-- | tests/codegen-llvm/gpu-kernel-abi.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/codegen-llvm/gpu-kernel-abi.rs b/tests/codegen-llvm/gpu-kernel-abi.rs new file mode 100644 index 00000000000..8ac376d9338 --- /dev/null +++ b/tests/codegen-llvm/gpu-kernel-abi.rs @@ -0,0 +1,15 @@ +// Checks that the gpu-kernel calling convention correctly translates to LLVM calling conventions. + +//@ add-core-stubs +//@ revisions: nvptx +//@ [nvptx] compile-flags: --crate-type=rlib --target=nvptx64-nvidia-cuda +//@ [nvptx] needs-llvm-components: nvptx +#![feature(no_core, lang_items, abi_gpu_kernel)] +#![no_core] + +extern crate minicore; +use minicore::*; + +// nvptx: define ptx_kernel void @fun(i32 +#[no_mangle] +pub extern "gpu-kernel" fn fun(_: i32) {} |
