[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Other / loop-mssa-not-preserved.ll
blob38390262f113aec755969c590625d2af16bcf0f1
1 ; RUN: not --crash opt -passes='loop-mssa(loop-unroll-full)' 2>&1 < %s | FileCheck %s
3 ; CHECK: LLVM ERROR: Loop pass manager using MemorySSA contains a pass that does not preserve MemorySSA
5 define void @test() {
6 entry:
7   br label %loop
9 loop:
10   %i = phi i32 [ 0, %entry ], [ %i.inc, %loop ]
11   %i.inc = add i32 %i, 1
12   %c = icmp ult i32 %i, 8
13   br i1 %c, label %loop, label %exit
15 exit:
16   ret void