[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / basic-loop.ll
blob0b42b4d6b1c3ebf2dee4a14f95f89b763cd0d700
1 ; RUN: llc -O0 -verify-machineinstrs -march=amdgcn -mcpu=tahiti < %s | FileCheck %s
2 ; RUN: llc -O0 -verify-machineinstrs -march=amdgcn -mcpu=tonga < %s | FileCheck %s
4 ; CHECK-LABEL: {{^}}test_loop:
5 define amdgpu_kernel void @test_loop(ptr addrspace(1) noalias %out, ptr addrspace(1) noalias %in, i32 %val) nounwind {
6 entry:
7   br label %loop.body
9 loop.body:
10   %i = phi i32 [0, %entry], [%i.inc, %loop.body]
11   store i32 222, ptr addrspace(1) %out
12   %cmp = icmp ne i32 %i, %val
13   %i.inc = add i32 %i, 1
14   br i1 %cmp, label %loop.body, label %end
16 end:
17   ret void