[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / selectcc-cnde-int.ll
blob14640c108913f3211dff0b02fc1e8cc2e599bb2b
1 ;RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s
3 ;CHECK-NOT: SETE_INT
4 ;CHECK: CNDE_INT {{\*?}}T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}, 1, literal.x,
5 ;CHECK-NEXT: 2
6 define amdgpu_kernel void @test(ptr addrspace(1) %out, ptr addrspace(1) %in) {
7   %1 = load i32, ptr addrspace(1) %in
8   %2 = icmp eq i32 %1, 0
9   %3 = select i1 %2, i32 1, i32 2
10   store i32 %3, ptr addrspace(1) %out
11   ret void