repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added the ability to xfail based on llvmgcc version
[llvm-complete.git]
/
test
/
Transforms
/
InstCombine
/
store.ll
blob
6982e0deb0635aa215c8b51fe0d45aa9797e6f75
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
}