Files
clang-p2996/llvm/test/CodeGen/NVPTX/calling-conv.ll
Artem Belevich ef8655adc8 [NVPTX] Adapt tests to make them usable with CUDA-12.x
CUDA-12 no longer supports 32-bit compilation.

Tests agnostic to 32/64 compilation mode are switched to use nvptx64.
Tests that do care about it have 32-bit ptxas compilation disabled with cuda-12+.

Differential Revision: https://reviews.llvm.org/D152199
2023-06-06 14:22:12 -07:00

33 lines
750 B
LLVM

; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
; RUN: llc < %s -march=nvptx64 -mcpu=sm_20 | FileCheck %s
; RUN: %if ptxas && !ptxas-12.0 %{ llc < %s -march=nvptx -mcpu=sm_20 | %ptxas-verify %}
; RUN: %if ptxas %{ llc < %s -march=nvptx64 -mcpu=sm_20 | %ptxas-verify %}
;; Kernel function using ptx_kernel calling conv
; CHECK: .entry kernel_func
define ptx_kernel void @kernel_func(ptr %a) {
; CHECK: ret
ret void
}
;; Device function
; CHECK: .func device_func
define void @device_func(ptr %a) {
; CHECK: ret
ret void
}
;; Kernel function using NVVM metadata
; CHECK: .entry metadata_kernel
define void @metadata_kernel(ptr %a) {
; CHECK: ret
ret void
}
!nvvm.annotations = !{!1}
!1 = !{ptr @metadata_kernel, !"kernel", i32 1}