[llvm-commits] [llvm] r91312 - /llvm/trunk/test/Transforms/LICM/2009-12-10-LICM-Indbr-Crash.ll
Eric Christopher
echristo at apple.com
Mon Dec 14 11:07:26 PST 2009
Author: echristo
Date: Mon Dec 14 13:07:25 2009
New Revision: 91312
URL: http://llvm.org/viewvc/llvm-project?rev=91312&view=rev
Log:
Add radar fixed in comment.
Modified:
llvm/trunk/test/Transforms/LICM/2009-12-10-LICM-Indbr-Crash.ll
Modified: llvm/trunk/test/Transforms/LICM/2009-12-10-LICM-Indbr-Crash.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/LICM/2009-12-10-LICM-Indbr-Crash.ll?rev=91312&r1=91311&r2=91312&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/LICM/2009-12-10-LICM-Indbr-Crash.ll (original)
+++ llvm/trunk/test/Transforms/LICM/2009-12-10-LICM-Indbr-Crash.ll Mon Dec 14 13:07:25 2009
@@ -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
-}
\ No newline at end of file
+}
More information about the llvm-commits
mailing list