mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-08 03:30:22 +00:00
f2f6ce65b7
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
26 lines
537 B
LLVM
26 lines
537 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
|
|
}
|