[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / InstCombine / unreachable-dbg-info-modified.ll
blob01c99733301eac165f2849a9e286c1a81d5036e9
1 ; RUN: opt < %s -instcombine -S | FileCheck %s
3 ; When removing the llvm.dbg.value intrinsic in the unreachable block
4 ; InstCombine would incorrectly return a false Modified status.
6 ; CHECK: cond.true:
7 ; CHECK-NEXT: br label %cond.end
9 define i32 @foo() !dbg !7 {
10 entry:
11   br i1 false, label %cond.true, label %cond.end
13 cond.true:
14   call void @llvm.dbg.value(metadata i32 undef, metadata !12, metadata !DIExpression()), !dbg !13
15   br label %cond.end
17 cond.end:
18   ret i32 undef
21 declare void @llvm.dbg.value(metadata, metadata, metadata) #0
23 attributes #0 = { nounwind readnone speculatable willreturn }
25 !llvm.dbg.cu = !{!0}
26 !llvm.module.flags = !{!3, !4}
27 !llvm.ident = !{!6}
29 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 12.0.0", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, splitDebugInlining: false, nameTableKind: None)
30 !1 = !DIFile(filename: "foo.c", directory: "/")
31 !2 = !{}
32 !3 = !{i32 7, !"Dwarf Version", i32 4}
33 !4 = !{i32 2, !"Debug Info Version", i32 3}
34 !6 = !{!"clang version 12.0.0"}
35 !7 = distinct !DISubprogram(name: "foo", scope: !1, file: !1, line: 1, type: !8, scopeLine: 1, flags: DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !11)
36 !8 = !DISubroutineType(types: !9)
37 !9 = !{!10}
38 !10 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
39 !11 = !{!12, !12}
40 !12 = !DILocalVariable(name: "bar", scope: !7, file: !1, line: 1, type: !10)
41 !13 = !DILocation(line: 0, scope: !7)