[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / polly / test / IstAstInfo / aliasing_multiple_alias_groups.ll
blobb824c211fd3181cac952948997f916142978ec2d
1 ; RUN: opt %loadPolly -polly-print-ast       -disable-output < %s | FileCheck %s --check-prefix=NOAA
2 ; RUN: opt %loadPolly -polly-print-ast -tbaa -disable-output < %s | FileCheck %s --check-prefix=TBAA
4 ;    void jd(int *Int0, int *Int1, float *Float0, float *Float1) {
5 ;      for (int i = 0; i < 1024; i++) {
6 ;        Int0[i] = Int1[i];
7 ;        Float0[i] = Float1[i];
8 ;      }
9 ;    }
11 ; NOAA:      if (1 && (
12 ; NOAA-DAG:    &MemRef_Int0[1024] <= &MemRef_Float0[0] || &MemRef_Float0[1024] <= &MemRef_Int0[0]
13 ; NOAA-DAG:    &MemRef_Int1[1024] <= &MemRef_Float0[0] || &MemRef_Float0[1024] <= &MemRef_Int1[0]
14 ; NOAA-DAG:    &MemRef_Float1[1024] <= &MemRef_Float0[0] || &MemRef_Float0[1024] <= &MemRef_Float1[0]
15 ; NOAA-DAG:    &MemRef_Int1[1024] <= &MemRef_Int0[0] || &MemRef_Int0[1024] <= &MemRef_Int1[0]
16 ; NOAA-DAG:    &MemRef_Float1[1024] <= &MemRef_Int0[0] || &MemRef_Int0[1024] <= &MemRef_Float1[0]
17 ; NOAA:      ))
19 ; TBAA:      if (1 && (
20 ; TBAA-DAG:    &MemRef_Int1[1024] <= &MemRef_Int0[0] || &MemRef_Int0[1024] <= &MemRef_Int1[0]
21 ; TBAA-DAG:    &MemRef_Float1[1024] <= &MemRef_Float0[0] || &MemRef_Float0[1024] <= &MemRef_Float1[0]
22 ; TBAA:      ))
24 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
26 define void @jd(ptr nocapture %Int0, ptr nocapture readonly %Int1, ptr nocapture %Float0, ptr nocapture readonly %Float1) {
27 entry:
28   br label %for.body
30 for.body:                                         ; preds = %for.body, %entry
31   %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ]
32   %arrayidx = getelementptr inbounds i32, ptr %Int1, i64 %indvars.iv
33   %tmp = load i32, ptr %arrayidx, align 4, !tbaa !0
34   %arrayidx2 = getelementptr inbounds i32, ptr %Int0, i64 %indvars.iv
35   store i32 %tmp, ptr %arrayidx2, align 4, !tbaa !0
36   %arrayidx4 = getelementptr inbounds float, ptr %Float1, i64 %indvars.iv
37   %tmp1 = load float, ptr %arrayidx4, align 4, !tbaa !4
38   %arrayidx6 = getelementptr inbounds float, ptr %Float0, i64 %indvars.iv
39   store float %tmp1, ptr %arrayidx6, align 4, !tbaa !4
40   %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
41   %exitcond = icmp eq i64 %indvars.iv.next, 1024
42   br i1 %exitcond, label %for.end, label %for.body
44 for.end:                                          ; preds = %for.body
45   ret void
48 !0 = !{!1, !1, i64 0}
49 !1 = !{!"int", !2, i64 0}
50 !2 = !{!"omnipotent char", !3, i64 0}
51 !3 = !{!"Simple C/C++ TBAA"}
52 !4 = !{!5, !5, i64 0}
53 !5 = !{!"float", !2, i64 0}