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

23 lines
505 B
LLVM

; RUN: opt < %s -predsimplify -simplifycfg -S | grep pass
define void @regtest(i32 %x) {
entry:
%A = icmp eq i32 %x, 0 ; <i1> [#uses=1]
br i1 %A, label %middle, label %after
middle: ; preds = %entry
br label %after
after: ; preds = %middle, %entry
%B = icmp eq i32 %x, 0 ; <i1> [#uses=1]
br i1 %B, label %then, label %else
then: ; preds = %after
br label %end
else: ; preds = %after
call void (...)* @pass( )
br label %end
end: ; preds = %else, %then
ret void
}
declare void @pass(...)