Matt Arsenault | 10fc062 | 2017-06-26 03:01:31 +0000 | [diff] [blame] | 1 | ; 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 |
| 4 | define 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 |
| 13 | define 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 | |
| 21 | declare i8 addrspace(2)* @llvm.amdgcn.implicit.buffer.ptr() #0 |
| 22 | |
| 23 | attributes #0 = { nounwind readnone speculatable } |
| 24 | attributes #1 = { nounwind } |