Files
clang-p2996/llvm/test/Transforms/DeadStoreElimination/debuginfo.ll
Bjorn Pettersson 211cf8a384 [test] Use -passes in more Transforms tests
Another step towards getting rid of dependencies to the legacy
pass manager.

Primary change here is to just do -passes=foo instead of -foo in
simple situations (when running a single transform pass). But also
updated a few test running multiple passes.

Also removed some "duplicated" RUN lines in a few tests that where
using both -foo and -passes=foo syntax. No need to do the same kind
of testing twice.
2022-10-21 17:02:02 +02:00

28 lines
948 B
LLVM

; RUN: opt < %s -passes=debugify,dse -S | FileCheck %s
target datalayout = "E-p:64:64:64-a0:0:8-f32:32:32-f64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-v64:64:64-v128:128:128"
declare noalias ptr @malloc(i32)
declare void @test_f()
define ptr @test_salvage(i32 %arg) {
; Check that all four original local variables have their values preserved.
; CHECK-LABEL: @test_salvage(
; CHECK-NEXT: malloc
; CHECK-NEXT: @llvm.dbg.value(metadata ptr %p, metadata ![[p:.*]], metadata !DIExpression())
; CHECK-NEXT: @llvm.dbg.value(metadata i32 %arg, metadata ![[DEAD:.*]], metadata !DIExpression(DW_OP_plus_uconst, 1, DW_OP_stack_value))
; CHECK-NEXT: call void @test_f()
; CHECK-NEXT: store i32 0, ptr %p
%p = tail call ptr @malloc(i32 4)
%DEAD = add i32 %arg, 1
store i32 %DEAD, ptr %p
call void @test_f()
store i32 0, ptr %p
ret ptr %p
}
; CHECK: ![[p]] = !DILocalVariable(name: "1"
; CHECK: ![[DEAD]] = !DILocalVariable(name: "2"