[test/Object] - Cleanup the Object\obj2yaml.test a bit.
[llvm-complete.git] / test / Transforms / LoopUnswitch / infinite-loop.ll
blobf11aa50e634a3c67ddb703040ad24c348b002b06
1 ; REQUIRES: asserts
2 ; RUN: opt -loop-unswitch -disable-output -stats -info-output-file - < %s | FileCheck --check-prefix=STATS %s
3 ; RUN: opt -loop-unswitch -enable-mssa-loop-dependency=true -verify-memoryssa -disable-output -stats -info-output-file - < %s | FileCheck --check-prefix=STATS %s
4 ; RUN: opt -loop-unswitch -simplifycfg -S < %s | FileCheck %s
5 ; PR5373
7 ; Loop unswitching shouldn't trivially unswitch the true case of condition %a
8 ; in the code here because it leads to an infinite loop. While this doesn't
9 ; contain any instructions with side effects, it's still a kind of side effect.
10 ; It can trivially unswitch on the false case of condition %a though.
12 ; STATS: 2 loop-unswitch - Number of branches unswitched
13 ; STATS: 2 loop-unswitch - Number of unswitches that are trivial
15 ; CHECK-LABEL: @func_16(
16 ; CHECK-NEXT: entry:
17 ; CHECK-NEXT: br i1 %a, label %entry.split, label %abort0.split
19 ; CHECK: entry.split:
20 ; CHECK-NEXT: br i1 %b, label %for.body, label %abort1.split
22 ; CHECK: for.body:
23 ; CHECK-NEXT: br label %for.body
25 ; CHECK: abort0.split:
26 ; CHECK-NEXT: call void @end0() [[NOR_NUW:#[0-9]+]]
27 ; CHECK-NEXT: unreachable
29 ; CHECK: abort1.split:
30 ; CHECK-NEXT: call void @end1() [[NOR_NUW]]
31 ; CHECK-NEXT: unreachable
33 ; CHECK: }
35 define void @func_16(i1 %a, i1 %b) nounwind {
36 entry:
37   br label %for.body
39 for.body:
40   br i1 %a, label %cond.end, label %abort0
42 cond.end:
43   br i1 %b, label %for.body, label %abort1
45 abort0:
46   call void @end0() noreturn nounwind
47   unreachable
49 abort1:
50   call void @end1() noreturn nounwind
51   unreachable
54 declare void @end0() noreturn
55 declare void @end1() noreturn
57 ; CHECK: attributes #0 = { nounwind }
58 ; CHECK: attributes #1 = { noreturn }
59 ; CHECK: attributes [[NOR_NUW]] = { noreturn nounwind }