llvm-6502/test/Transforms/LICM/Preserve-LCSSA.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

26 lines
535 B
LLVM

; RUN: opt %s -loop-rotate -licm -loop-unswitch -disable-output
define i32 @stringSearch_Clib(i32 %count) {
entry:
br i1 false, label %bb36, label %bb44
bb4: ; preds = %bb36
br i1 false, label %cond_next, label %cond_true
cond_true: ; preds = %bb4
ret i32 0
cond_next: ; preds = %bb4
ret i32 0
bb36: ; preds = %bb41, %entry
br i1 false, label %bb4, label %bb41
bb41: ; preds = %bb36
%ttmp2 = icmp slt i32 0, %count ; <i1> [#uses=1]
br i1 %ttmp2, label %bb36, label %bb44
bb44: ; preds = %bb41, %entry
ret i32 0
}