Added the ability to xfail based on llvmgcc version
[llvm-complete.git] / test / Transforms / InstCombine / store.ll
blob6982e0deb0635aa215c8b51fe0d45aa9797e6f75
1 ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep -v 'store.*,.*null' | not grep store
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