llvm-6502/test/Transforms/ADCE/2003-01-22-PredecessorProblem.ll
Dan Gohman f2f6ce65b7 Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
input filename so that opt doesn't print the input filename in the
output so that grep lines in the tests don't unintentionally match
strings in the input filename.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81537 91177308-0d34-0410-b5e6-96231b3b80d8
2009-09-11 18:01:28 +00:00

26 lines
686 B
LLVM

; Testcase reduced from 197.parser by bugpoint
; RUN: opt < %s -adce
define void @conjunction_prune() {
; <label>:0
br label %bb19
bb19: ; preds = %bb23, %bb22, %0
%reg205 = phi i8* [ null, %bb22 ], [ null, %bb23 ], [ null, %0 ] ; <i8*> [#uses=1]
br i1 false, label %bb21, label %bb22
bb21: ; preds = %bb19
%cast455 = bitcast i8* %reg205 to i8** ; <i8**> [#uses=0]
br label %bb22
bb22: ; preds = %bb21, %bb19
br i1 false, label %bb19, label %bb23
bb23: ; preds = %bb22
br i1 false, label %bb19, label %bb28
bb28: ; preds = %bb23
ret void
}