New testcase
[oota-llvm.git] / test / Transforms / InstCombine / store.ll
1 ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep -v 'store.*,.*null' | not grep store
2
3
4 void %test1(int* %P) {
5         store int undef, int* %P
6         store int 123, int* undef
7         store int 124, int* null
8         ret void
9 }