hanchenye-llvm-project/llvm/test/CodeGen/PowerPC/store-load-fwd.ll

7 lines
145 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | not grep lwz
int %test(int* %P) {
store int 1, int* %P
%V = load int* %P
ret int %V
}