Make sure SimplifyStoreAtEndOfBlock doesn't mess with loops; the
[oota-llvm.git] / test / Transforms / InstCombine / 2008-06-13-InfiniteLoopStore.ll
1 ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep {store i32} | count 2
2 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
3 target triple = "i386-apple-darwin8"
4
5 @g_139 = global i32 0           ; <i32*> [#uses=2]
6
7 define void @func_56(i32 %p_60) nounwind  {
8 entry:
9         store i32 1, i32* @g_139, align 4
10         %tmp1 = icmp ne i32 %p_60, 0            ; <i1> [#uses=1]
11         %tmp12 = zext i1 %tmp1 to i8            ; <i8> [#uses=1]
12         %toBool = icmp ne i8 %tmp12, 0          ; <i1> [#uses=1]
13         br i1 %toBool, label %bb, label %return
14
15 bb:             ; preds = %bb, %entry
16         store i32 1, i32* @g_139, align 4
17         br label %bb
18
19 return:         ; preds = %entry
20         ret void
21 }
22