blob: 761fb5a318d3260b819fb1683aed637e3ea1904e [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | not grep lwz
2int %test(int* %P) {
3 store int 1, int* %P
4 %V = load int* %P
5 ret int %V
6}