1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/CodeGen/PowerPC/store-load-fwd.ll
Tanya Lattner 230c714773 Remove llvm-upgrade and update tests.
llvm-svn: 47325
2008-02-19 08:07:33 +00:00

9 lines
192 B
LLVM

; RUN: llvm-as < %s | llc -march=ppc32 | not grep lwz
define i32 @test(i32* %P) {
store i32 1, i32* %P
%V = load i32* %P ; <i32> [#uses=1]
ret i32 %V
}