summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/no-cmov.ll
blob: e13edf26cad7c17301dc62f47cdd9d1b5885f446 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llc -march=x86 -mcpu=i486 < %s | FileCheck %s

define i32 @test1(i32 %g, i32* %j) {
  %tobool = icmp eq i32 %g, 0
  %cmp = load i32* %j, align 4
  %retval.0 = select i1 %tobool, i32 1, i32 %cmp
  ret i32 %retval.0

; CHECK-LABEL: test1:
; CHECK-NOT: cmov
}