mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +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
24 lines
791 B
LLVM
24 lines
791 B
LLVM
; Test that pure functions are cse'd away
|
|
; RUN: opt < %s -globalsmodref-aa -gvn -instcombine | \
|
|
; RUN: llvm-dis | not grep sub
|
|
|
|
define i32 @pure(i32 %X) {
|
|
%Y = add i32 %X, 1 ; <i32> [#uses=1]
|
|
ret i32 %Y
|
|
}
|
|
|
|
define i32 @test1(i32 %X) {
|
|
%A = call i32 @pure( i32 %X ) ; <i32> [#uses=1]
|
|
%B = call i32 @pure( i32 %X ) ; <i32> [#uses=1]
|
|
%C = sub i32 %A, %B ; <i32> [#uses=1]
|
|
ret i32 %C
|
|
}
|
|
|
|
define i32 @test2(i32 %X, i32* %P) {
|
|
%A = call i32 @pure( i32 %X ) ; <i32> [#uses=1]
|
|
store i32 %X, i32* %P ;; Does not invalidate 'pure' call.
|
|
%B = call i32 @pure( i32 %X ) ; <i32> [#uses=1]
|
|
%C = sub i32 %A, %B ; <i32> [#uses=1]
|
|
ret i32 %C
|
|
}
|