1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00
llvm-mirror/test/Transforms/InstCombine/2007-02-23-PhiFoldInfLoop.ll
Dan Gohman 205b641954 Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
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.

llvm-svn: 81537
2009-09-11 18:01:28 +00:00

32 lines
833 B
LLVM

; RUN: opt < %s -instcombine -S | grep ret
; PR1217
target datalayout = "e-p:32:32"
target triple = "i686-pc-linux-gnu"
%struct.termbox = type { %struct.termbox*, i32, i32, i32, i32, i32 }
define void @ggenorien() {
entry:
%tmp68 = icmp eq %struct.termbox* null, null ; <i1> [#uses=1]
br i1 %tmp68, label %cond_next448, label %bb80
bb80: ; preds = %entry
ret void
cond_next448: ; preds = %entry
br i1 false, label %bb756, label %bb595
bb595: ; preds = %cond_next448
br label %bb609
bb609: ; preds = %bb756, %bb595
%termnum.6240.0 = phi i32 [ 2, %bb595 ], [ %termnum.6, %bb756 ] ; <i32> [#uses=1]
%tmp755 = add i32 %termnum.6240.0, 1 ; <i32> [#uses=1]
br label %bb756
bb756: ; preds = %bb609, %cond_next448
%termnum.6 = phi i32 [ %tmp755, %bb609 ], [ 2, %cond_next448 ] ; <i32> [#uses=1]
br label %bb609
}