forked from KhronosGroup/SPIRV-LLVM-Translator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
group-decorate.ll
35 lines (30 loc) · 1.23 KB
/
group-decorate.ll
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
; RUN: llvm-as < %s | llvm-spirv -spirv-text -o %t
; RUN: FileCheck < %t %s
target datalayout = "e-p:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024"
target triple = "spir-unknown-unknown"
; CHECK: 4 Decorate [[GID:[0-9]*]] FuncParamAttr 5
; CHECK: 2 DecorationGroup [[GID]]
; CHECK: 4 Decorate [[GID2:[0-9]*]] FuncParamAttr 6
; CHECK: 2 DecorationGroup [[GID2]]
; CHECK: 5 GroupDecorate [[GID]]
; CHECK: 4 GroupDecorate [[GID2]]
; Function Attrs: nounwind readnone
define spir_kernel void @test(<4 x i8> addrspace(1)* nocapture %src1, <4 x i8> addrspace(1)* nocapture %src2, <4 x i8> addrspace(1)* nocapture %dst) #0 !kernel_arg_addr_space !1 !kernel_arg_access_qual !2 !kernel_arg_type !3 !kernel_arg_base_type !5 !kernel_arg_type_qual !4 {
entry:
ret void
}
attributes #0 = { nounwind readnone }
!opencl.enable.FP_CONTRACT = !{}
!opencl.spir.version = !{!6}
!opencl.ocl.version = !{!6}
!opencl.used.extensions = !{!7}
!opencl.used.optional.core.features = !{!7}
!opencl.compiler.options = !{!8}
!1 = !{i32 1, i32 1, i32 1}
!2 = !{!"none", !"none", !"none"}
!3 = !{!"char4*", !"char4*", !"char4*"}
!4 = !{!"const", !"const", !""}
!5 = !{!"char4*", !"char4*", !"char4*"}
!6 = !{i32 1, i32 2}
!7 = !{}
!8 = !{!""}