mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
205b641954
input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. llvm-svn: 81537
22 lines
597 B
LLVM
22 lines
597 B
LLVM
; RUN: opt < %s -reassociate -instcombine -S | 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
|
|
}
|
|
|