Update Polly tests to handle explicitly typed gep changes in LLVM
[polly-mirror.git] / test / ScopDetectionDiagnostics / ReportFuncCall-01.ll
blob524bc70df8aadb500372243abcb7df55fd8ac6f9
1 ; RUN: opt %loadPolly -polly-detect-unprofitable -pass-remarks-missed="polly-detect" -polly-detect-track-failures -polly-detect -analyze < %s 2>&1 | FileCheck %s
3 ; #define N 1024
4 ; double invalidCall(double A[N]);
6 ; void a(double A[N], int n) {
7 ;   for (int i=0; i<n; ++i) {
8 ;     A[i] = invalidCall(A);
9 ;   }
10 ; }
12 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
13 target triple = "x86_64-unknown-linux-gnu"
15 define void @a(double* %A, i32 %n) #0 {
16 entry:
17   %cmp1 = icmp sgt i32 %n, 0, !dbg !10
18   br i1 %cmp1, label %for.body.lr.ph, label %for.end, !dbg !10
20 for.body.lr.ph:                                   ; preds = %entry
21   %0 = zext i32 %n to i64
22   br label %for.body, !dbg !10
24 for.body:                                         ; preds = %for.body, %for.body.lr.ph
25   %indvar = phi i64 [ 0, %for.body.lr.ph ], [ %indvar.next, %for.body ]
26   %arrayidx = getelementptr double, double* %A, i64 %indvar, !dbg !12
27   %call = tail call double @invalidCall(double* %A) #2, !dbg !12
28   store double %call, double* %arrayidx, align 8, !dbg !12, !tbaa !14
29   %indvar.next = add i64 %indvar, 1, !dbg !10
30   %exitcond = icmp eq i64 %indvar.next, %0, !dbg !10
31   br i1 %exitcond, label %for.end.loopexit, label %for.body, !dbg !10
33 for.end.loopexit:                                 ; preds = %for.body
34   br label %for.end
36 for.end:                                          ; preds = %for.end.loopexit, %entry
37   ret void, !dbg !18
40 declare double @invalidCall(double*) #1
42 ; CHECK: remark: ReportFuncCall.c:4:8: The following errors keep this region from being a Scop.
43 ; CHECK: remark: ReportFuncCall.c:5:12: This function call cannot be handled. Try to inline it.
45 !llvm.dbg.cu = !{!0}
46 !llvm.module.flags = !{!7, !8}
47 !llvm.ident = !{!9}
49 !0 = !{!"0x11\0012\00clang version 3.5.0 \001\00\000\00\002", !1, !2, !2, !3, !2, !2} ; [ DW_TAG_compile_unit ] [/home/simbuerg/Projekte/llvm/tools/polly/test/ScopDetectionDiagnostics/ReportFuncCall.c] [DW_LANG_C99]
50 !1 = !{!"ReportFuncCall.c", !"/home/simbuerg/Projekte/llvm/tools/polly/test/ScopDetectionDiagnostics"}
51 !2 = !{}
52 !3 = !{!4}
53 !4 = !{!"0x2e\00a\00a\00\003\000\001\000\006\00256\001\003", !1, !5, !6, null, void (double*, i32)* @a, null, null, !2} ; [ DW_TAG_subprogram ] [line 3] [def] [a]
54 !5 = !{!"0x29", !1}          ; [ DW_TAG_file_type ] [/home/simbuerg/Projekte/llvm/tools/polly/test/ScopDetectionDiagnostics/ReportFuncCall.c]
55 !6 = !{!"0x15\00\000\000\000\000\000\000", i32 0, null, null, !2, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
56 !7 = !{i32 2, !"Dwarf Version", i32 4}
57 !8 = !{i32 2, !"Debug Info Version", i32 2}
58 !9 = !{!"clang version 3.5.0 "}
59 !10 = !MDLocation(line: 4, column: 8, scope: !11)
60 !11 = !{!"0xb\004\003\000", !1, !4} ; [ DW_TAG_lexical_block ] [/home/simbuerg/Projekte/llvm/tools/polly/test/ScopDetectionDiagnostics/ReportFuncCall.c]
61 !12 = !MDLocation(line: 5, column: 12, scope: !13)
62 !13 = !{!"0xb\004\0027\000", !1, !11} ; [ DW_TAG_lexical_block ] [/home/simbuerg/Projekte/llvm/tools/polly/test/ScopDetectionDiagnostics/ReportFuncCall.c]
63 !14 = !{!15, !15, i64 0}
64 !15 = !{!"double", !16, i64 0}
65 !16 = !{!"omnipotent char", !17, i64 0}
66 !17 = !{!"Simple C/C++ TBAA"}
67 !18 = !MDLocation(line: 7, column: 1, scope: !4)