summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/shift-sra.ll
blob: a14dce8250e4fe931e24531a535be24984507702 (plain)
1
2
3
4
5
6
7
8
; RUN: llvm-as < %s | opt -instcombine -disable-output &&
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep 'shr int'

int %test0(int %X, ubyte %A) {
	%Y = shr int %X, ubyte %A  ; can be logical shift.
	%Z = and int %Y, 1
	ret int %Z
}