new testcase
[oota-llvm.git] / test / CodeGen / PowerPC / store-load-fwd.ll
1 ; RUN: llvm-as < %s | llc -march=ppc32 &&
2 ; RUN: llvm-as < %s | llc -march=ppc32 | not grep lwz
3 int %test(int* %P) {
4         store int 1, int* %P
5         %V = load int* %P
6         ret int %V
7 }