blob: 437ce7f373db4f890c1b51105e78ed3d9b385671 [file] [log] [blame]
Matt Arsenault10fc0622017-06-26 03:01:31 +00001; RUN: not llc -mtriple=amdgcn-amd-amdhsa < %s 2>&1 | FileCheck -check-prefix=ERROR %s
2
3; ERROR: in function test_kernel{{.*}}: non-hsa intrinsic with hsa target
4define amdgpu_kernel void @test_kernel(i32 addrspace(1)* %out) #1 {
5 %implicit_buffer_ptr = call i8 addrspace(2)* @llvm.amdgcn.implicit.buffer.ptr()
6 %header_ptr = bitcast i8 addrspace(2)* %implicit_buffer_ptr to i32 addrspace(2)*
7 %value = load i32, i32 addrspace(2)* %header_ptr
8 store i32 %value, i32 addrspace(1)* %out
9 ret void
10}
11
12; ERROR: in function test_func{{.*}}: non-hsa intrinsic with hsa target
13define void @test_func(i32 addrspace(1)* %out) #1 {
14 %implicit_buffer_ptr = call i8 addrspace(2)* @llvm.amdgcn.implicit.buffer.ptr()
15 %header_ptr = bitcast i8 addrspace(2)* %implicit_buffer_ptr to i32 addrspace(2)*
16 %value = load i32, i32 addrspace(2)* %header_ptr
17 store i32 %value, i32 addrspace(1)* %out
18 ret void
19}
20
21declare i8 addrspace(2)* @llvm.amdgcn.implicit.buffer.ptr() #0
22
23attributes #0 = { nounwind readnone speculatable }
24attributes #1 = { nounwind }