llvm-project/llvm/test/Transforms/DeadArgElim/2008-06-23-DeadAfterLive.ll
Bjorn Pettersson e76ecbb0f3 [test] Use opt -passes syntax in DeadArgElim lit tests. NFC
The legacy PM is deprecated, so update a bunch of lit tests running
opt to use the new PM syntax when specifying the pipeline.
2022-01-17 18:14:36 +01:00

24 lines
653 B
LLVM

; RUN: opt < %s -passes='deadargelim,function(dce)' -S > %t
; RUN: cat %t | grep 123
; This test tries to catch wrongful removal of return values for a specific case
; that was breaking llvm-gcc builds.
; This function has a live return value, it is used by @alive.
define internal i32 @test5() {
ret i32 123
}
; This function doesn't use the return value @test5 and tries to lure DAE into
; marking @test5's return value dead because only this call is unused.
define i32 @dead() {
%DEAD = call i32 @test5()
ret i32 0
}
; This function ensures the retval of @test5 is live.
define i32 @alive() {
%LIVE = call i32 @test5()
ret i32 %LIVE
}