Xamarin Public Jenkins (auto-signing) e19d552987 Imported Upstream version 5.18.0.161
Former-commit-id: 4db48158d3a35497b8f118ab21b5f08ac3d86d98
2018-10-19 08:34:24 +00:00

25 lines
525 B
LLVM

; RUN: llc -o - %s | FileCheck %s
target triple = "x86_64--"
; Make sure we do not crash in tail duplication when finding no successor of a
; block.
; CHECK-LABEL: func:
; CHECK: testb
; CEHCK: je
; CHECK: retq
; CHECK: jmp
define hidden void @func() {
entry:
br i1 undef, label %for.cond.cleanup, label %while.cond.preheader
while.cond.preheader:
br label %while.cond
for.cond.cleanup:
ret void
while.cond:
%cmp.i202 = icmp eq i8* undef, undef
br i1 %cmp.i202, label %while.cond.preheader, label %while.cond
}