blob: 42b1873eedbb96a862934b0206600488579b970f [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; With shl->mul reassociation, we can see that this is (shl A, 9) * A
2;
Dan Gohman1b4c27772009-09-08 16:50:01 +00003; RUN: opt %s -reassociate -instcombine | llvm-dis |\
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004; RUN: grep {shl .*, 9}
5
Tanya Lattner028031a2008-03-19 04:36:04 +00006define i32 @test(i32 %A, i32 %B) {
7 %X = shl i32 %A, 5 ; <i32> [#uses=1]
8 %Y = shl i32 %A, 4 ; <i32> [#uses=1]
9 %Z = mul i32 %Y, %X ; <i32> [#uses=1]
10 ret i32 %Z
Dan Gohmanf17a25c2007-07-18 16:29:46 +000011}
Tanya Lattner028031a2008-03-19 04:36:04 +000012