summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/2009-06-16-SRemDemandedBits.ll
blob: 230e2459055d65d02050b25e11eb7ce7c6c1062a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep srem
; PR3439

define i32 @a(i32 %x) nounwind {
entry:
	%rem = srem i32 %x, 2
	%and = and i32 %rem, 2
	ret i32 %and
}
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep srem
; PR3439

define i32 @a(i32 %x) nounwind {
entry:
	%rem = srem i32 %x, 2
	%and = and i32 %rem, 2
	ret i32 %and
}