Use ptr type in the immediate field of a BxA instruction so we don't end up selecting...
[oota-llvm.git] / test / CodeGen / PowerPC / store-load-fwd.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | not grep lwz
2 int %test(int* %P) {
3         store int 1, int* %P
4         %V = load int* %P
5         ret int %V
6 }