llvm-6502/test/Transforms/PredicateSimplifier/2006-08-07-LeaderOffByOne.ll
Dan Gohman b1e1e82c54 Change these tests to feed the assembly files to opt directly, instead
of using llvm-as, now that opt supports this.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81226 91177308-0d34-0410-b5e6-96231b3b80d8
2009-09-08 16:50:01 +00:00

24 lines
708 B
LLVM

; RUN: opt %s -predsimplify -disable-output
define void @safe_strcpy(i32 %size1) {
entry:
%tmp = icmp eq i32 %size1, 0 ; <i1> [#uses=1]
br i1 %tmp, label %return, label %strlen.exit
strlen.exit: ; preds = %entry
%tmp.upgrd.1 = trunc i64 0 to i32 ; <i32> [#uses=2]
%tmp6 = icmp ult i32 %tmp.upgrd.1, %size1 ; <i1> [#uses=1]
br i1 %tmp6, label %cond_true7, label %cond_false19
cond_true7: ; preds = %strlen.exit
%tmp9 = icmp eq i32 %tmp.upgrd.1, 0 ; <i1> [#uses=1]
br i1 %tmp9, label %cond_next15, label %cond_true10
cond_true10: ; preds = %cond_true7
ret void
cond_next15: ; preds = %cond_true7
ret void
cond_false19: ; preds = %strlen.exit
ret void
return: ; preds = %entry
ret void
}