2006-03-14 14:54:32 +08:00
|
|
|
; There should be exactly one shift and one add left.
|
2014-06-12 02:28:45 +08:00
|
|
|
; RUN: opt < %s -reassociate -instcombine -S | FileCheck %s
|
2006-03-14 14:54:32 +08:00
|
|
|
|
2014-06-12 02:28:45 +08:00
|
|
|
define i32 @test1(i32 %X, i32 %Y) {
|
|
|
|
; CHECK-LABEL: test1
|
2014-11-20 07:21:20 +08:00
|
|
|
; CHECK-NEXT: %tmp = add i32 %Y, %X
|
2014-06-12 02:28:45 +08:00
|
|
|
; CHECK-NEXT: %tmp1 = shl i32 %tmp, 1
|
|
|
|
; CHECK-NEXT: ret i32 %tmp1
|
2006-03-14 14:54:32 +08:00
|
|
|
|
2014-06-12 02:28:45 +08:00
|
|
|
%tmp.2 = shl i32 %X, 1
|
|
|
|
%tmp.6 = shl i32 %Y, 1
|
|
|
|
%tmp.4 = add i32 %tmp.6, %tmp.2
|
|
|
|
ret i32 %tmp.4
|
|
|
|
}
|