Implement bswap
[llvm/msp430.git] / test / Transforms / LICM / 2003-02-27-StoreSinkPHIs.ll
blob7ce164ec237f7be29ec0a5b3c676b7205134a5d9
1 ; LICM is adding stores before phi nodes.  bad.
3 ; RUN: llvm-as < %s | opt -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