1 ; RUN: llvm-as < %s | llvm-spirv -spirv-text -o %t 2 ; RUN: FileCheck < %t %s 3 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" 4 target triple = "spir-unknown-unknown" 5 6 ; Function Attrs: nounwind 7 ; CHECK: Capability Addresses 8 ; CHECK: "foo" 9 define spir_kernel void @foo(i32 addrspace(1)* %a) #0 { 10 entry: 11 %a.addr = alloca i32 addrspace(1)*, align 4 12 store i32 addrspace(1)* %a, i32 addrspace(1)** %a.addr, align 4 13 ret void 14 } 15 16 attributes #0 = { nounwind "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-realign-stack" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" } 17 18 !opencl.kernels = !{!0} 19 !opencl.enable.FP_CONTRACT = !{} 20 !opencl.spir.version = !{!6} 21 !opencl.ocl.version = !{!6} 22 !opencl.used.extensions = !{!7} 23 !opencl.used.optional.core.features = !{!7} 24 !opencl.compiler.options = !{!7} 25 26 !0 = !{void (i32 addrspace(1)*)* @foo, !1, !2, !3, !4, !5} 27 !1 = !{!"kernel_arg_addr_space", i32 1} 28 !2 = !{!"kernel_arg_access_qual", !"none"} 29 !3 = !{!"kernel_arg_type", !"int*"} 30 !4 = !{!"kernel_arg_base_type", !"int*"} 31 !5 = !{!"kernel_arg_type_qual", !""} 32 !6 = !{i32 1, i32 2} 33 !7 = !{} 34