[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / GlobalISel / amdgpu-irtranslator.ll
blob5c451bffc227862bf9fa0fb6eb0378f50db3efaa
1 ; RUN: llc -march=amdgcn -mcpu=fiji -O0 -stop-after=irtranslator -global-isel %s -o - 2>&1 | FileCheck %s
3 ; This file checks that the translation from llvm IR to generic
4 ; MachineInstr is correct.
6 ; Tests for add.
7 ; CHECK: name: addi32
8 ; CHECK: {{%[0-9]+}}:_(s32) = G_ADD
9 define amdgpu_kernel void @addi32(i32 %arg1, i32 %arg2) {
10   %res = add i32 %arg1, %arg2
11   store i32 %res, ptr addrspace(1) undef
12   ret void