Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[llvm/avr.git] / test / Transforms / InstCombine / store.ll
blobd6f916dc8c7f209fcd3bf227a3d44280c6c8b24c
1 ; RUN: opt < %s -instcombine -S | \
2 ; RUN:   grep -v {store.*,.*null} | not grep store
4 define void @test1(i32* %P) {
5         store i32 undef, i32* %P
6         store i32 123, i32* undef
7         store i32 124, i32* null
8         ret void
11 define void @test2(i32* %P) {
12         %X = load i32* %P               ; <i32> [#uses=1]
13         %Y = add i32 %X, 0              ; <i32> [#uses=1]
14         store i32 %Y, i32* %P
15         ret void