llvm-6502/test/Transforms/Reassociate/negation.ll
Tanya Lattner 7f40dea2f1 Upgrade tests to not use llvm-upgrade.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48530 91177308-0d34-0410-b5e6-96231b3b80d8
2008-03-19 04:36:04 +00:00

22 lines
615 B
LLVM

; RUN: llvm-as < %s | opt -reassociate -instcombine | llvm-dis | not grep sub
; Test that we can turn things like X*-(Y*Z) -> X*-1*Y*Z.
define i32 @test1(i32 %a, i32 %b, i32 %z) {
%c = sub i32 0, %z ; <i32> [#uses=1]
%d = mul i32 %a, %b ; <i32> [#uses=1]
%e = mul i32 %c, %d ; <i32> [#uses=1]
%f = mul i32 %e, 12345 ; <i32> [#uses=1]
%g = sub i32 0, %f ; <i32> [#uses=1]
ret i32 %g
}
define i32 @test2(i32 %a, i32 %b, i32 %z) {
%d = mul i32 %z, 40 ; <i32> [#uses=1]
%c = sub i32 0, %d ; <i32> [#uses=1]
%e = mul i32 %a, %c ; <i32> [#uses=1]
%f = sub i32 0, %e ; <i32> [#uses=1]
ret i32 %f
}