You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
This commit is contained in:
parent
32d52ae4ca
commit
f32dbaf0b2
23
external/llvm/test/Transforms/LoopUnswitch/copy-metadata.ll
vendored
Normal file
23
external/llvm/test/Transforms/LoopUnswitch/copy-metadata.ll
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
; RUN: opt < %s -loop-unswitch -S < %s 2>&1 | FileCheck %s
|
||||
|
||||
; This test checks if unswitched condition preserve make.implicit metadata.
|
||||
|
||||
define i32 @test(i1 %cond) {
|
||||
; CHECK-LABEL: @test(
|
||||
; CHECK: br i1 %cond, label %..split_crit_edge, label %.loop_exit.split_crit_edge, !make.implicit !0
|
||||
br label %loop_begin
|
||||
|
||||
loop_begin:
|
||||
br i1 %cond, label %continue, label %loop_exit, !make.implicit !0
|
||||
|
||||
continue:
|
||||
call void @some_func()
|
||||
br label %loop_begin
|
||||
|
||||
loop_exit:
|
||||
ret i32 0
|
||||
}
|
||||
|
||||
declare void @some_func()
|
||||
|
||||
!0 = !{}
|
Reference in New Issue
Block a user