mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-04 05:31:06 +00:00
b1e1e82c54
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
15 lines
433 B
LLVM
15 lines
433 B
LLVM
; RUN: opt %s -loopsimplify -verify -licm -disable-output
|
|
|
|
define void @.subst_48() {
|
|
entry:
|
|
br label %loopentry.0
|
|
loopentry.0: ; preds = %loopentry.0, %entry
|
|
br i1 false, label %loopentry.0, label %loopentry.2
|
|
loopentry.2: ; preds = %loopentry.2, %loopentry.0
|
|
%tmp.968 = icmp sle i32 0, 3 ; <i1> [#uses=1]
|
|
br i1 %tmp.968, label %loopentry.2, label %UnifiedReturnBlock
|
|
UnifiedReturnBlock: ; preds = %loopentry.2
|
|
ret void
|
|
}
|
|
|