mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
230c714773
llvm-svn: 47325
9 lines
192 B
LLVM
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
|
|
}
|
|
|