aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/2008-07-08-AndICmp.ll
blob: c6002413147e61abd4b3ed3e1ee372b0ce6b2b39 (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep icmp | count 1
; PR2330

define i1 @foo(i32 %a, i32 %b) nounwind {
entry:
	icmp ult i32 %a, 8		; <i1>:0 [#uses=1]
	icmp ult i32 %b, 8		; <i1>:1 [#uses=1]
	and i1 %1, %0		; <i1>:2 [#uses=1]
	ret i1 %2
}