1 ; RUN: opt -S -loop-reduce %s | FileCheck %s
2 ; RUN: opt --try-experimental-debuginfo-iterators -S -loop-reduce %s | FileCheck %s
4 ;; Ensure that scev-based salvaging in LSR does not select an IV containing
7 target triple = "x86_64-unknown-linux-gnu"
9 define i16 @n(i1 %c1) !dbg !8 {
11 br i1 %c1, label %m, label %for.body
13 for.body: ; preds = %for.body, %entry
14 %iv = phi i16 [ %ivdec, %for.body ], [ 14, %entry ]
15 %ivdec = sub i16 %iv, 1
16 call void @llvm.dbg.value(metadata i16 %iv, metadata !21, metadata !DIExpression()), !dbg !19
19 m: ; preds = %m, %entry
20 %0 = phi i16 [ 3, %m ], [ 6, %entry ]
22 ; CHECK: #dbg_value(i16 poison, !{{[0-9]+}}, !DIExpression(),
23 call void @llvm.dbg.value(metadata i16 %0, metadata !14, metadata !DIExpression()), !dbg !19
27 ; Function Attrs: nofree nosync nounwind readnone speculatable willreturn
28 declare void @llvm.dbg.value(metadata, metadata, metadata)
31 !llvm.module.flags = !{!3, !4, !5, !6}
34 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 14.0.0", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, globals: !2, splitDebugInlining: false, nameTableKind: None)
35 !1 = !DIFile(filename: "reduced.c", directory: "/")
37 !3 = !{i32 7, !"Dwarf Version", i32 4}
38 !4 = !{i32 2, !"Debug Info Version", i32 3}
39 !5 = !{i32 1, !"wchar_size", i32 1}
40 !6 = !{i32 7, !"frame-pointer", i32 2}
41 !7 = !{!"clang version 14.0.0"}
42 !8 = distinct !DISubprogram(name: "n", scope: !1, file: !1, line: 18, type: !9, scopeLine: 18, flags: DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !12)
43 !9 = !DISubroutineType(types: !10)
45 !11 = !DIBasicType(name: "int", size: 16, encoding: DW_ATE_signed)
47 !13 = !DILabel(scope: !8, name: "m", file: !1, line: 22)
48 !14 = !DILocalVariable(name: "k", arg: 2, scope: !15, file: !1, line: 9, type: !11)
49 !15 = distinct !DISubprogram(name: "i", scope: !1, file: !1, line: 9, type: !16, scopeLine: 9, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !18)
50 !16 = !DISubroutineType(types: !17)
51 !17 = !{!11, !11, !11}
53 !19 = !DILocation(line: 0, scope: !15, inlinedAt: !20)
54 !20 = distinct !DILocation(line: 23, scope: !8)
55 !21 = !DILocalVariable(name: "x", arg: 2, scope: !15, file: !1, line: 1, type: !11)