You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.246
Former-commit-id: 0c7ce5b1a7851e13f22acfd379b7f9fb304e4833
This commit is contained in:
parent
a7724cd563
commit
279aa8f685
41
external/llvm/test/Transforms/SimpleLoopUnswitch/2012-04-02-IndirectBr.ll
vendored
Normal file
41
external/llvm/test/Transforms/SimpleLoopUnswitch/2012-04-02-IndirectBr.ll
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
; RUN: opt < %s -S -simple-loop-unswitch -verify-loop-info -verify-dom-info | FileCheck %s
|
||||
; PR12343: -simple-loop-unswitch crash on indirect branch
|
||||
|
||||
; CHECK: %0 = icmp eq i64 undef, 0
|
||||
; CHECK-NEXT: br i1 %0, label %"5", label %"4"
|
||||
|
||||
; CHECK: "5": ; preds = %entry
|
||||
; CHECK-NEXT: br label %"16"
|
||||
|
||||
; CHECK: "16": ; preds = %"22", %"5"
|
||||
; CHECK-NEXT: indirectbr i8* undef, [label %"22", label %"33"]
|
||||
|
||||
; CHECK: "22": ; preds = %"16"
|
||||
; CHECK-NEXT: br i1 %0, label %"16", label %"26"
|
||||
|
||||
; CHECK: "26": ; preds = %"22"
|
||||
; CHECK-NEXT: unreachable
|
||||
|
||||
define void @foo() {
|
||||
entry:
|
||||
%0 = icmp eq i64 undef, 0
|
||||
br i1 %0, label %"5", label %"4"
|
||||
|
||||
"4": ; preds = %entry
|
||||
unreachable
|
||||
|
||||
"5": ; preds = %entry
|
||||
br label %"16"
|
||||
|
||||
"16": ; preds = %"22", %"5"
|
||||
indirectbr i8* undef, [label %"22", label %"33"]
|
||||
|
||||
"22": ; preds = %"16"
|
||||
br i1 %0, label %"16", label %"26"
|
||||
|
||||
"26": ; preds = %"22"
|
||||
unreachable
|
||||
|
||||
"33": ; preds = %"16"
|
||||
unreachable
|
||||
}
|
Reference in New Issue
Block a user