1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00
llvm-mirror/test/Transforms/InstCombine/deadcode.ll
Arthur Eubanks c01a5baad9 [DIE] Remove DeadInstEliminationPass
This pass is like DeadCodeEliminationPass, but only does one pass
through a function instead of iterating on users of eliminated
instructions.

DeadCodeEliminationPass should be used in all cases.

Reviewed By: asbirlea

Differential Revision: https://reviews.llvm.org/D87933
2020-09-21 12:12:25 -07:00

34 lines
732 B
LLVM

; RUN: opt < %s -instcombine -S | grep "ret i32 %A"
; RUN: opt < %s -dce -S | not grep call.*llvm
define i32 @test(i32 %A) {
%X = or i1 false, false
br i1 %X, label %T, label %C
T: ; preds = %0
%B = add i32 %A, 1
br label %C
C: ; preds = %T, %0
%C.upgrd.1 = phi i32 [ %B, %T ], [ %A, %0 ]
ret i32 %C.upgrd.1
}
define i32* @test2(i32 %width) {
%tmp = call i8* @llvm.stacksave( )
%tmp14 = alloca i32, i32 %width
ret i32* %tmp14
}
declare i8* @llvm.stacksave()
declare void @llvm.lifetime.start.p0i8(i64, i8*)
declare void @llvm.lifetime.end.p0i8(i64, i8*)
define void @test3() {
call void @llvm.lifetime.start.p0i8(i64 -1, i8* undef)
call void @llvm.lifetime.end.p0i8(i64 -1, i8* undef)
ret void
}