blob: a084fa08b804b8c1643ca01e1641274aa493497f [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 {
Yaxun Liu0124b542018-02-13 18:00:25 +00005 %implicit_buffer_ptr = call i8 addrspace(4)* @llvm.amdgcn.implicit.buffer.ptr()
6 %header_ptr = bitcast i8 addrspace(4)* %implicit_buffer_ptr to i32 addrspace(4)*
7 %value = load i32, i32 addrspace(4)* %header_ptr
Matt Arsenault10fc0622017-06-26 03:01:31 +00008 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 {
Yaxun Liu0124b542018-02-13 18:00:25 +000014 %implicit_buffer_ptr = call i8 addrspace(4)* @llvm.amdgcn.implicit.buffer.ptr()
15 %header_ptr = bitcast i8 addrspace(4)* %implicit_buffer_ptr to i32 addrspace(4)*
16 %value = load i32, i32 addrspace(4)* %header_ptr
Matt Arsenault10fc0622017-06-26 03:01:31 +000017 store i32 %value, i32 addrspace(1)* %out
18 ret void
19}
20
Yaxun Liu0124b542018-02-13 18:00:25 +000021declare i8 addrspace(4)* @llvm.amdgcn.implicit.buffer.ptr() #0
Matt Arsenault10fc0622017-06-26 03:01:31 +000022
23attributes #0 = { nounwind readnone speculatable }
24attributes #1 = { nounwind }