Dan Gohman 1880092722 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.

llvm-svn: 81537
2009-09-11 18:01:28 +00:00

29 lines
589 B
LLVM

; RUN: opt < %s -condprop -S | \
; RUN: not grep {br label}
; RUN: opt < %s -condprop -S | not grep T2
define i32 @test(i1 %C) {
br i1 %C, label %T1, label %F1
T1: ; preds = %0
br label %Cont
F1: ; preds = %0
br label %Cont
Cont: ; preds = %F1, %T1
%C2 = phi i1 [ false, %F1 ], [ true, %T1 ] ; <i1> [#uses=1]
br i1 %C2, label %T2, label %F2
T2: ; preds = %Cont
call void @bar( )
ret i32 17
F2: ; preds = %Cont
ret i32 1
}
declare void @bar()