1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

test that reassociate can handle shifts

llvm-svn: 21760
This commit is contained in:
Chris Lattner 2005-05-07 04:23:29 +00:00
parent b1ea71fbcd
commit e265bf6fe5

View File

@ -0,0 +1,10 @@
; With shl->mul reassociation, we can see that this is (shl A, 9) * A
;
; RUN: llvm-as < %s | opt -reassociate -instcombine | llvm-dis | grep 'shl .*, ubyte 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
}