Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / DeadArgElim / deadretval2.ll
blob6d37bd19a8fb6b8695bcdde187bc37f28a74ad64
1 ; RUN: opt < %s -passes='deadargelim,function(dce)' -S > %t
2 ; RUN: cat %t | not grep DEAD
3 ; RUN: cat %t | grep LIVE | count 4
5 @P = external global i32                ; <ptr> [#uses=1]
7 ; Dead arg only used by dead retval
8 define internal i32 @test(i32 %DEADARG) {
9         ret i32 %DEADARG
12 define internal i32 @test2(i32 %DEADARG) {
13         %DEADRETVAL = call i32 @test( i32 %DEADARG )            ; <i32> [#uses=1]
14         ret i32 %DEADRETVAL
17 define void @test3(i32 %X) {
18         %DEADRETVAL = call i32 @test2( i32 %X )         ; <i32> [#uses=0]
19         ret void
22 define internal i32 @foo() {
23         %DEAD = load i32, ptr @P            ; <i32> [#uses=1]
24         ret i32 %DEAD
27 define internal i32 @id(i32 %X) {
28         ret i32 %X
31 define void @test4() {
32         %DEAD = call i32 @foo( )                ; <i32> [#uses=1]
33         %DEAD2 = call i32 @id( i32 %DEAD )              ; <i32> [#uses=0]
34         ret void
37 ; These test if returning another functions return value properly marks that
38 ; other function's return value as live. We do this twice, with the functions in
39 ; different orders (ie, first the caller, than the callee and first the callee
40 ; and then the caller) since DAE processes functions one by one and handles
41 ; these cases slightly different.
43 define internal i32 @test5() {
44   ret i32 123 
47 define i32 @test6() {
48   %LIVE = call i32 @test5()
49   ret i32 %LIVE
52 define i32 @test7() {
53   %LIVE = call i32 @test8()
54   ret i32 %LIVE
57 define internal i32 @test8() {
58   ret i32 124