mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
230c714773
llvm-svn: 47325
10 lines
284 B
LLVM
10 lines
284 B
LLVM
; Should fold the ori into the lfs.
|
|
; RUN: llvm-as < %s | llc -march=ppc32 | grep lfs
|
|
; RUN: llvm-as < %s | llc -march=ppc32 | not grep ori
|
|
|
|
define float @test() {
|
|
%tmp.i = load float* inttoptr (i32 186018016 to float*) ; <float> [#uses=1]
|
|
ret float %tmp.i
|
|
}
|
|
|