llvm-6502/test/Transforms/Reassociate/negation.ll
Dan Gohman f2f6ce65b7 Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
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.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81537 91177308-0d34-0410-b5e6-96231b3b80d8
2009-09-11 18:01:28 +00:00

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
}