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

9 lines
182 B
LLVM
Raw Normal View History

; RUN: llc < %s -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
2005-10-10 23:57:37 +02:00
}