fix PR4963: folding insertvalue would sometimes turn a packed struct into
[llvm/avr.git] / test / Transforms / InstCombine / volatile_store.ll
blob5316bd772e13ad6a28365ad763aea2d149722cb2
1 ; RUN: opt < %s -instcombine -S | grep {volatile store}
2 ; RUN: opt < %s -instcombine -S | grep {volatile load}
4 @x = weak global i32 0          ; <i32*> [#uses=2]
6 define void @self_assign_1() {
7 entry:
8         %tmp = volatile load i32* @x            ; <i32> [#uses=1]
9         volatile store i32 %tmp, i32* @x
10         br label %return
12 return:         ; preds = %entry
13         ret void