[InstCombine] Signed saturation patterns
[llvm-core.git] / test / Transforms / LICM / 2003-02-27-StoreSinkPHIs.ll
bloba9c6b856f8ea51514ab3da5e6b4c8e6e0f327223
1 ; LICM is adding stores before phi nodes.  bad.
3 ; RUN: opt < %s -licm
5 define i1 @test(i1 %c) {
6 ; <label>:0
7         br i1 %c, label %Loop, label %Out
8 Loop:           ; preds = %Loop, %0
9         store i32 0, i32* null
10         br i1 %c, label %Loop, label %Out
11 Out:            ; preds = %Loop, %0
12         %X = phi i1 [ %c, %0 ], [ true, %Loop ]         ; <i1> [#uses=1]
13         ret i1 %X