[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / polly / test / IstAstInfo / OpenMP / single_loop_param_non_parallel.ll
blobee02dafeedeb151d1c328bb2d75fe3d87577de1c
1 ; RUN: opt %loadPolly -polly-print-ast -polly-parallel -disable-output < %s | FileCheck %s
2 ; RUN: opt %loadPolly -print-polyhedral-info -polly-check-parallel -disable-output < %s | FileCheck %s -check-prefix=PINFO
3 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"
5 ; for (i = 0; i < n; i++)
6 ;   A[0] = i;
8 @A = common global [1024 x i32] zeroinitializer
9 define void @bar(i64 %n) {
10 start:
11   fence seq_cst
12   br label %loop.header
14 loop.header:
15   %i = phi i64 [ 0, %start ], [ %i.next, %loop.backedge ]
16   %exitcond = icmp ne i64 %i, %n
17   br i1 %exitcond, label %loop.body, label %ret
19 loop.body:
20   store i32 1, ptr @A
21   br label %loop.backedge
23 loop.backedge:
24   %i.next = add nsw i64 %i, 1
25   br label %loop.header
27 ret:
28   fence seq_cst
29   ret void
32 ; CHECK: for (int c0 = 0; c0 < n; c0 += 1)
33 ; CHECK:   Stmt_loop_body(c0)
34 ; PINFO: loop.header: Loop is not parallel.