[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / inline-calls.ll
blobe1cdfa834608d969764620f18b896c783005492f
1 ; RUN: llc -mtriple amdgcn-unknown-linux-gnu -mcpu=tahiti -verify-machineinstrs < %s | FileCheck  %s
2 ; RUN: llc -mtriple amdgcn-unknown-linux-gnu -mcpu=tonga -verify-machineinstrs < %s | FileCheck  %s
3 ; RUN: llc -mtriple r600-unknown-linux-gnu -mcpu=redwood -verify-machineinstrs < %s | FileCheck %s --check-prefix=R600
5 ; ALL-NOT: {{^}}func:
6 define internal i32 @func(i32 %a) {
7 entry:
8   %tmp0 = add i32 %a, 1
9   ret i32 %tmp0
12 ; CHECK: {{^}}kernel:
13 ; GCN-NOT: s_swappc_b64
14 define amdgpu_kernel void @kernel(ptr addrspace(1) %out) {
15 entry:
16   %tmp0 = call i32 @func(i32 1)
17   store i32 %tmp0, ptr addrspace(1) %out
18   ret void
21 ; CHECK: func_alias
22 ; R600-NOT: func_alias
23 @func_alias = alias i32 (i32), ptr @func
25 ; CHECK-NOT: {{^}}kernel3:
26 ; GCN-NOT: s_swappc_b64
27 ; R600: {{^}}kernel3:
28 define amdgpu_kernel void @kernel3(ptr addrspace(1) %out) {
29 entry:
30   %tmp0 = call i32 @func_alias(i32 1)
31   store i32 %tmp0, ptr addrspace(1) %out
32   ret void