summaryrefslogtreecommitdiff
path: root/test/Transforms/Reassociate/shifttest.ll
blob: 0bfe0ec2df69005e284a80156ad68189751d08e7 (plain)
1
2
3
4
5
6
7
8
9
10
; With shl->mul reassociation, we can see that this is (shl A, 9) * A
;
; RUN: llvm-upgrade < %s | llvm-as | opt -reassociate -instcombine | llvm-dis | grep 'shl .*, i8 9'

int %test(int %A, int %B) {
	%X = shl int %A, ubyte 5
	%Y = shl int %A, ubyte 4
	%Z = mul int %Y, %X
	ret int %Z
}