1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

New testcase for PR293

llvm-svn: 12433
This commit is contained in:
Chris Lattner 2004-03-16 05:44:02 +00:00
parent d700a628ae
commit 593ec3e0aa

View File

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