Add radar fixed in comment.

llvm-svn: 91312
This commit is contained in:
Eric Christopher 2009-12-14 19:07:25 +00:00
parent 20ac87de13
commit 1dba6ea72f
1 changed files with 6 additions and 5 deletions

View File

@ -1,20 +1,21 @@
; 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* undef, align 1
br label %loop
return:
ret void
}
}