[flang][OpenMP] Change clause modifier representation in parser (#116656)
[llvm-project.git] / polly / test / CodeGen / single_do_loop_int_param_iterations.ll
blobacccb48f18a3c2335905613e5eecdce9a997fb8f
1 ; RUN: opt %loadNPMPolly '-passes=print<polly-ast>' -disable-output < %s | FileCheck %s
2 ; XFAIL: *
4 ;define N 20
5 ;#include "limits.h"
6 ;int A[N];
8 ;void bar (int n) {
9 ;  int i;
10 ;  __sync_synchronize();
11 ;  i = 0;
13 ;  do {
14 ;    A[0] = i;
15 ;    ++i;
16 ;  } while (i < 2 * n);
17 ;  __sync_synchronize();
20 ;int main () {
21 ;  A[0] = 0;
22 ;  bar (N/2);
24 ;  if (A[0] == N - 1 )
25 ;    return 0;
26 ;  else
27 ;    return 1;
30 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
32 @A = common global [20 x i32] zeroinitializer, align 4 ; <ptr> [#uses=1]
34 define void @bar(i32 %n) nounwind {
35 entry:
36   fence seq_cst
37   %tmp = mul i32 %n, 2                            ; <i32> [#uses=2]
38   %tmp1 = icmp sgt i32 %tmp, 1                    ; <i1> [#uses=1]
39   %smax = select i1 %tmp1, i32 %tmp, i32 1        ; <i32> [#uses=1]
40   br label %do.body
42 do.body:                                          ; preds = %do.cond, %entry
43   %0 = phi i32 [ 0, %entry ], [ %inc, %do.cond ]  ; <i32> [#uses=2]
44   store i32 %0, ptr @A
45   %inc = add nsw i32 %0, 1                        ; <i32> [#uses=2]
46   br label %do.cond
48 do.cond:                                          ; preds = %do.body
49   %exitcond = icmp ne i32 %inc, %smax             ; <i1> [#uses=1]
50   br i1 %exitcond, label %do.body, label %do.end
52 do.end:                                           ; preds = %do.cond
53   fence seq_cst
54   ret void
57 define i32 @main() nounwind {
58 entry:
59   store i32 0, ptr @A
60   call void @bar(i32 10)
61   %tmp = load i32, ptr @A ; <i32> [#uses=1]
62   %cmp = icmp eq i32 %tmp, 19                     ; <i1> [#uses=1]
63   br i1 %cmp, label %if.then, label %if.else
65 if.then:                                          ; preds = %entry
66   br label %return
68 if.else:                                          ; preds = %entry
69   br label %return
71 return:                                           ; preds = %if.else, %if.then
72   %retval.0 = phi i32 [ 0, %if.then ], [ 1, %if.else ] ; <i32> [#uses=1]
73   ret i32 %retval.0
75 ; CHECK: Scop: do.body => do.end