forked from OSchip/llvm-project
parent
0128c9a6de
commit
767858af43
|
@ -0,0 +1,12 @@
|
|||
; RUN: llvm-as < %s | opt -loopsimplify -licm -disable-output
|
||||
void %main() {
|
||||
entry:
|
||||
br bool false, label %Out, label %loop
|
||||
|
||||
loop:
|
||||
%LI = setgt int 0, 0
|
||||
br bool %LI, label %loop, label %Out
|
||||
|
||||
Out:
|
||||
ret void
|
||||
}
|
Loading…
Reference in New Issue