33 lines
1.1 KiB
LLVM
33 lines
1.1 KiB
LLVM
; RUN: llvm-as %s -o %t.bc
|
|
; RUN: llvm-spirv -spirv-text %t.bc -o - | FileCheck %s --check-prefix=CHECK-SPIRV
|
|
; RUN: llvm-spirv %t.bc -o %t.spv
|
|
; RUN: spirv-val %t.spv
|
|
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o - | FileCheck %s --check-prefix=CHECK-LLVM
|
|
|
|
; CHECK-SPIRV: Decorate [[PARAM:[0-9]+]] FuncParamAttr 6
|
|
; CHECK-SPIRV: FunctionParameter {{.*}} [[PARAM]]
|
|
|
|
; ModuleID = 'readonly.bc'
|
|
source_filename = "readonly.cpp"
|
|
target datalayout = "e-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-n8:16:32:64"
|
|
target triple = "spir64-unknown-unknown"
|
|
|
|
; CHECK-LLVM: spir_kernel void @_ZTSZ4mainE15kernel_function(ptr addrspace(1) readonly %{{.*}})
|
|
; Function Attrs: norecurse nounwind readonly willreturn
|
|
define dso_local spir_kernel void @_ZTSZ4mainE15kernel_function(ptr addrspace(1) readonly %_arg_) local_unnamed_addr #0 {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
attributes #0 = { norecurse nounwind }
|
|
|
|
!llvm.module.flags = !{!0}
|
|
!opencl.spir.version = !{!1}
|
|
!spirv.Source = !{!2}
|
|
!llvm.ident = !{!3}
|
|
|
|
!0 = !{i32 1, !"wchar_size", i32 4}
|
|
!1 = !{i32 1, i32 2}
|
|
!2 = !{i32 4, i32 100000}
|
|
!3 = !{!"clang version 13.0.0 (https://github.com/intel/llvm.git)"}
|