llvm-6502/test/CodeGen/PowerPC/store-load-fwd.ll
2006-12-02 04:23:10 +00:00

8 lines
202 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 &&
; 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
}