A8.6.92 MCR (Encoding A1): if coproc == '101x' then SEE "Advanced SIMD and VFP"
[llvm/stm8.git] / test / Transforms / LoopUnswitch / infinite-loop.ll
blob73391ca8d19d3d5b85bdb4bbc30a99c3f82e5e24
1 ; RUN: opt -loop-unswitch -disable-output -stats -info-output-file - < %s | FileCheck --check-prefix=STATS %s
2 ; RUN: opt -loop-unswitch -simplifycfg -S < %s | FileCheck %s
3 ; PR5373
5 ; Loop unswitching shouldn't trivially unswitch the true case of condition %a
6 ; in the code here because it leads to an infinite loop. While this doesn't
7 ; contain any instructions with side effects, it's still a kind of side effect.
8 ; It can trivially unswitch on the false cas of condition %a though.
10 ; STATS: 2 loop-unswitch - Number of branches unswitched
11 ; STATS: 1 loop-unswitch - Number of unswitches that are trivial
13 ; CHECK: @func_16
14 ; CHECK-NEXT: entry:
15 ; CHECK-NEXT: br i1 %a, label %entry.split, label %abort0.split
17 ; CHECK: entry.split:
18 ; CHECK-NEXT: br i1 %b, label %cond.end.us, label %abort1
20 ; CHECK: cond.end.us:
21 ; CHECK-NEXT: br label %cond.end.us
23 ; CHECK: abort0.split:
24 ; CHECK-NEXT: call void @end0() noreturn nounwind
25 ; CHECK-NEXT: unreachable
27 ; CHECK: abort1:
28 ; CHECK-NEXT: call void @end1() noreturn nounwind
29 ; CHECK-NEXT: unreachable
31 ; CHECK: }
33 define void @func_16(i1 %a, i1 %b) nounwind {
34 entry:
35   br label %for.body
37 for.body:
38   br i1 %a, label %cond.end, label %abort0
40 cond.end:
41   br i1 %b, label %for.body, label %abort1
43 abort0:
44   call void @end0() noreturn nounwind
45   unreachable
47 abort1:
48   call void @end1() noreturn nounwind
49   unreachable
52 declare void @end0() noreturn
53 declare void @end1() noreturn