AMDGPU: Fix warnings introduced by r310336
[llvm-project.git] / polly / test / ScopInfo / multiple_exiting_blocks.ll
blob01efa4e9f564e823ce0bb9e8d1151915bfbc3bf6
1 ; RUN: opt %loadPolly -polly-scops -analyze < %s | FileCheck %s
3 ; CHECK: Domain :=
4 ; CHECK:   [N, P, Q] -> { Stmt_if_end[i0] : 0 <= i0 <= 1 + Q and i0 < N and (i0 < P or (P < 0 and i0 >= 2 + P)); Stmt_if_end[0] : N > 0 and ((P <= -2 and Q <= -2) or (P > 0 and Q <= -2) or P = -1) };
6 ;    void f(int *A, int N, int P, int Q) {
7 ;      for (int i = 0; i < N; i++) {
8 ;        if (i == P)
9 ;          break;
10 ;        A[i]++;
11 ;        if (i > Q)
12 ;          break;
13 ;      }
14 ;    }
16 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
18 define void @f(i32* %A, i32 %N, i32 %P, i32 %Q) {
19 entry:
20   %tmp = sext i32 %N to i64
21   %tmp1 = sext i32 %Q to i64
22   br label %for.cond
24 for.cond:                                         ; preds = %for.inc, %entry
25   %indvars.iv = phi i64 [ %indvars.iv.next, %for.inc ], [ 0, %entry ]
26   %cmp = icmp slt i64 %indvars.iv, %tmp
27   br i1 %cmp, label %for.body, label %for.end.loopexit
29 for.body:                                         ; preds = %for.cond
30   %tmp2 = trunc i64 %indvars.iv to i32
31   %cmp1 = icmp eq i32 %tmp2, %P
32   br i1 %cmp1, label %if.then, label %if.end
34 if.then:                                          ; preds = %for.body
35   br label %for.end
37 if.end:                                           ; preds = %for.body
38   %arrayidx = getelementptr inbounds i32, i32* %A, i64 %indvars.iv
39   %tmp3 = load i32, i32* %arrayidx, align 4
40   %inc = add nsw i32 %tmp3, 1
41   store i32 %inc, i32* %arrayidx, align 4
42   %cmp2 = icmp sgt i64 %indvars.iv, %tmp1
43   br i1 %cmp2, label %if.then.3, label %if.end.4
45 if.then.3:                                        ; preds = %if.end
46   br label %for.end
48 if.end.4:                                         ; preds = %if.end
49   br label %for.inc
51 for.inc:                                          ; preds = %if.end.4
52   %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
53   br label %for.cond
55 for.end.loopexit:                                 ; preds = %for.cond
56   br label %for.end
58 for.end:                                          ; preds = %for.end.loopexit, %if.then.3, %if.then
59   ret void