Update Polly tests to handle explicitly typed gep changes in LLVM
[polly-mirror.git] / test / Isl / CodeGen / LoopParallelMD / do_not_mutate_debug_info.ll
blobf58a22b1278f2f9a5d4c1d843cc168c16295827f
1 ; This test checks that we do not accidently mutate the debug info when
2 ; inserting loop parallel metadata.
3 ; RUN: opt %loadPolly -polly-detect-unprofitable < %s  -S -polly -polly-codegen-isl -polly-ast-detect-parallel | FileCheck %s
4 ; CHECK-NOT: !7 = !{!7}
5 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
6 target triple = "x86_64-unknown-linux-gnu"
8 @A = common global i32* null, align 8
10 ; Function Attrs: nounwind uwtable
11 define void @foo() {
12 entry:
13   tail call void @llvm.dbg.value(metadata i32 0, i64 0, metadata !9, metadata !19), !dbg !20
14   %0 = load i32** @A, align 8, !dbg !21, !tbaa !23
15   br label %for.body, !dbg !27
17 for.body:                                         ; preds = %for.body, %entry
18   %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ]
19   %arrayidx = getelementptr inbounds i32, i32* %0, i64 %indvars.iv, !dbg !21
20   %1 = load i32* %arrayidx, align 4, !dbg !21, !tbaa !30
21   %add = add nsw i32 %1, 1, !dbg !21
22   store i32 %add, i32* %arrayidx, align 4, !dbg !21, !tbaa !30
23   %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1, !dbg !27
24   %exitcond = icmp eq i64 %indvars.iv, 1, !dbg !27
25   br i1 %exitcond, label %for.end, label %for.body, !dbg !27
27 for.end:                                          ; preds = %for.body
28   ret void, !dbg !32
31 ; Function Attrs: nounwind readnone
32 declare void @llvm.dbg.value(metadata, i64, metadata, metadata)
35 !llvm.dbg.cu = !{!0}
36 !llvm.module.flags = !{!15, !16}
37 !llvm.ident = !{!17}
39 !0 = !{!"0x11\0012\00clang version 3.6.0 \001\00\000\00\001", !1, !2, !2, !3, !12, !2} ; [ DW_TAG_compile_unit ] [/local/mnt/workspace/build/tip-Release/t2.c] [DW_LANG_C99]
40 !1 = !{!"t2.c", !"/local/mnt/workspace/build/tip-Release"}
41 !2 = !{}
42 !3 = !{!4}
43 !4 = !{!"0x2e\00foo\00foo\00\003\000\001\000\000\000\001\003", !1, !5, !6, null, void ()* @foo, null, null, !8} ; [ DW_TAG_subprogram ] [line 3] [def] [foo]
44 !5 = !{!"0x29", !1}    ; [ DW_TAG_file_type ] [/local/mnt/workspace/build/tip-Release/t2.c]
45 !6 = !{!"0x15\00\000\000\000\000\000\000", null, null, null, !7, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
46 !7 = !{null}
47 !8 = !{!9}
48 !9 = !{!"0x100\00i\004\000", !10, !5, !11} ; [ DW_TAG_auto_variable ] [i] [line 4]
49 !10 = !{!"0xb\004\003\000", !1, !4} ; [ DW_TAG_lexical_block ] [/local/mnt/workspace/build/tip-Release/t2.c]
50 !11 = !{!"0x24\00int\000\0032\0032\000\000\005", null, null} ; [ DW_TAG_base_type ] [int] [line 0, size 32, align 32, offset 0, enc DW_ATE_signed]
51 !12 = !{!13}
52 !13 = !{!"0x34\00A\00A\00\002\000\001", null, !5, !14, i32** @A, null} ; [ DW_TAG_variable ] [A] [line 2] [def]
53 !14 = !{!"0xf\00\000\0064\0064\000\000", null, null, !11} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [from int]
54 !15 = !{i32 2, !"Dwarf Version", i32 4}
55 !16 = !{i32 2, !"Debug Info Version", i32 2}
56 !17 = !{!"clang version 3.6.0 "}
57 !18 = !{i32 0}
58 !19 = !{!"0x102"}               ; [ DW_TAG_expression ]
59 !20 = !MDLocation(line: 4, column: 12, scope: !10)
60 !21 = !MDLocation(line: 5, column: 5, scope: !22)
61 !22 = !{!"0xb\004\003\001", !1, !10} ; [ DW_TAG_lexical_block ] [/local/mnt/workspace/build/tip-Release/t2.c]
62 !23 = !{!24, !24, i64 0}
63 !24 = !{!"any pointer", !25, i64 0}
64 !25 = !{!"omnipotent char", !26, i64 0}
65 !26 = !{!"Simple C/C++ TBAA"}
66 !27 = !MDLocation(line: 4, column: 3, scope: !28)
67 !28 = !{!"0xb\002", !1, !29} ; [ DW_TAG_lexical_block ] [/local/mnt/workspace/build/tip-Release/t2.c]
68 !29 = !{!"0xb\001", !1, !22} ; [ DW_TAG_lexical_block ] [/local/mnt/workspace/build/tip-Release/t2.c]
69 !30 = !{!31, !31, i64 0}
70 !31 = !{!"int", !25, i64 0}
71 !32 = !MDLocation(line: 6, column: 1, scope: !4)