1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 21:13:02 +02:00
llvm-mirror/test/CodeGen/PowerPC/store-load-fwd.ll

7 lines
145 B
LLVM
Raw Normal View History

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