| ; RUIN: %llvm2ice %s | FileCheck %s |
| ; RUIN: %llvm2ice --verbose none %s | FileCheck --check-prefix=ERRORS %s |
| ; RUN: %llvm2iceinsts %s | %szdiff %s | FileCheck --check-prefix=DUMP %s |
| ; RUN: %llvm2iceinsts --pnacl %s | %szdiff %s \ |
| ; RUN: | FileCheck --check-prefix=DUMP %s |
| define void @testSelect(i32 %a, i32 %b) { |
| %cmp = icmp slt i32 %a, %b |
| %cond = select i1 %cmp, i32 %a, i32 %b |
| tail call void @useInt(i32 %cond) |
| %cmp1 = icmp sgt i32 %a, %b |
| %cond2 = select i1 %cmp1, i32 10, i32 20 |
| tail call void @useInt(i32 %cond2) |
| declare void @useInt(i32) |
| ; CHECK: .globl testSelect |
| ; ERRORS-NOT: ICE translation error |