1; RUN: opt < %s -loop-reduce -S 2>&1 | FileCheck %s 2;; This test case checks that whether the new icmp instruction preserves 3;; the debug location of the original instruction for %exitcond 4; CHECK: icmp uge i32 %indvar.next, %n, !dbg ![[DBGLOC:[0-9]+]] 5; CHECK: ![[DBGLOC]] = !DILocation(line: 6, column: 1, scope 6 7; ModuleID = 'simplified-dbg.bc' 8source_filename = "abc.ll" 9target datalayout = "n8:16:32:64" 10target triple = "x86_64-unknown-linux-gnu" 11 12define void @foobar(i32 %n) !dbg !6 { 13bb.nph: 14 %cond = icmp eq i32 %n, 0, !dbg !16 15 call void @llvm.dbg.value(metadata i1 %cond, metadata !9, metadata !DIExpression()), !dbg !16 16 %umax = select i1 %cond, i32 1, i32 %n, !dbg !17 17 call void @llvm.dbg.value(metadata i32 %umax, metadata !11, metadata !DIExpression()), !dbg !17 18 br label %bb, !dbg !18 19 20bb: ; preds = %bb, %bb.nph 21 %i.03 = phi i32 [ 0, %bb.nph ], [ %indvar.next, %bb ], !dbg !19 22 call void @llvm.dbg.value(metadata i32 %i.03, metadata !13, metadata !DIExpression()), !dbg !19 23 %indvar.next = add nuw nsw i32 %i.03, 1, !dbg !20 24 call void @llvm.dbg.value(metadata i32 %indvar.next, metadata !14, metadata !DIExpression()), !dbg !20 25 %exitcond = icmp eq i32 %indvar.next, %umax, !dbg !21 26 call void @llvm.dbg.value(metadata i1 %exitcond, metadata !15, metadata !DIExpression()), !dbg !21 27 br i1 %exitcond, label %return, label %bb, !dbg !22 28 29return: ; preds = %bb 30 ret void, !dbg !23 31} 32 33declare void @llvm.dbg.value(metadata, metadata, metadata) 34 35!llvm.dbg.cu = !{!0} 36!llvm.debugify = !{!3, !4} 37!llvm.module.flags = !{!5} 38 39!0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2) 40!1 = !DIFile(filename: "simplified.ll", directory: "/") 41!2 = !{} 42!3 = !{i32 8} 43!4 = !{i32 5} 44!5 = !{i32 2, !"Debug Info Version", i32 3} 45!6 = distinct !DISubprogram(name: "foobar", linkageName: "foobar", scope: null, file: !1, line: 1, type: !7, scopeLine: 1, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !8) 46!7 = !DISubroutineType(types: !2) 47!8 = !{!9, !11, !13, !14, !15} 48!9 = !DILocalVariable(name: "1", scope: !6, file: !1, line: 1, type: !10) 49!10 = !DIBasicType(name: "ty8", size: 8, encoding: DW_ATE_unsigned) 50!11 = !DILocalVariable(name: "2", scope: !6, file: !1, line: 2, type: !12) 51!12 = !DIBasicType(name: "ty32", size: 32, encoding: DW_ATE_unsigned) 52!13 = !DILocalVariable(name: "3", scope: !6, file: !1, line: 4, type: !12) 53!14 = !DILocalVariable(name: "4", scope: !6, file: !1, line: 5, type: !12) 54!15 = !DILocalVariable(name: "5", scope: !6, file: !1, line: 6, type: !10) 55!16 = !DILocation(line: 1, column: 1, scope: !6) 56!17 = !DILocation(line: 2, column: 1, scope: !6) 57!18 = !DILocation(line: 3, column: 1, scope: !6) 58!19 = !DILocation(line: 4, column: 1, scope: !6) 59!20 = !DILocation(line: 5, column: 1, scope: !6) 60!21 = !DILocation(line: 6, column: 1, scope: !6) 61!22 = !DILocation(line: 7, column: 1, scope: !6) 62!23 = !DILocation(line: 8, column: 1, scope: !6) 63