1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-04-22 15:39:28 +00:00

New testcase for PR293

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12433 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-03-16 05:44:02 +00:00
parent 26894bc347
commit 339c50873d

@ -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
}