diff options
Diffstat (limited to 'test/Transforms/SimpleLoopUnswitch/copy-metadata.ll')
| -rw-r--r-- | test/Transforms/SimpleLoopUnswitch/copy-metadata.ll | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/test/Transforms/SimpleLoopUnswitch/copy-metadata.ll b/test/Transforms/SimpleLoopUnswitch/copy-metadata.ll new file mode 100644 index 0000000000000..7085ed8e10fe3 --- /dev/null +++ b/test/Transforms/SimpleLoopUnswitch/copy-metadata.ll @@ -0,0 +1,34 @@ +; RUN: opt < %s -simple-loop-unswitch -S | FileCheck %s + +; This test checks if unswitched condition preserve make.implicit metadata. +define i32 @test(i1 %cond) { +; CHECK-LABEL: @test( +entry: + br label %loop_begin +; CHECK-NEXT: entry: +; CHECK-NEXT: br i1 %{{.*}}, label %entry.split, label %loop_exit, !make.implicit !0 +; +; CHECK: entry.split: +; CHECK-NEXT: br label %loop_begin + +loop_begin: + br i1 %cond, label %continue, label %loop_exit, !make.implicit !0 +; CHECK: loop_begin: +; CHECK-NEXT: br label %continue + +continue: + call void @some_func() + br label %loop_begin +; CHECK: continue: +; CHECK-NEXT: call +; CHECK-NEXT: br label %loop_begin + +loop_exit: + ret i32 0 +; CHECK: loop_exit: +; CHECK-NEXT: ret +} + +declare void @some_func() + +!0 = !{} |
