[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Transforms / LoopUnroll / peel-loop-and-unroll.ll
blob0cc10bd7b78b64ed78782af366262a9ff9f20e71
1 ; RUN: not opt -loop-unroll -unroll-peel-count=2 -unroll-count=2 -S < %s 2>&1 | FileCheck %s
3 ; CHECK: LLVM ERROR: Cannot specify both explicit peel count and explicit unroll count
5 @a = global [8 x i32] zeroinitializer, align 16
7 define void @test1() {
8 entry:
9   br label %for.body
11 for.body:                                         ; preds = %entry, %for.body
12   %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ]
13   %arrayidx = getelementptr inbounds [8 x i32], [8 x i32]* @a, i64 0, i64 %indvars.iv
14   %0 = trunc i64 %indvars.iv to i32
15   store i32 %0, i32* %arrayidx, align 4
16   %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
17   %exitcond = icmp ne i64 %indvars.iv.next, 8
18   br i1 %exitcond, label %for.body, label %for.exit
20 for.exit:                        ; preds = %for.body
21   ret void