You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
369 B
22 lines
369 B
; Test for rdar://7452967
|
|
; RUN: opt < %s -licm -disable-output
|
|
define void @foo (i8* %v)
|
|
{
|
|
entry:
|
|
br i1 undef, label %preheader, label %return
|
|
|
|
preheader:
|
|
br i1 undef, label %loop, label %return
|
|
|
|
loop:
|
|
indirectbr i8* undef, [label %preheader, label %stuff]
|
|
|
|
stuff:
|
|
%0 = load i8, i8* undef, align 1
|
|
br label %loop
|
|
|
|
return:
|
|
ret void
|
|
|
|
}
|