llvm-project/llvm/test/CodeGen/PowerPC/load-constant-addr.ll

10 lines
264 B
LLVM
Raw Normal View History

2006-03-21 06:37:05 +08:00
; Should fold the ori into the lfs.
; RUN: llc < %s -march=ppc32 | grep lfs
; RUN: llc < %s -march=ppc32 | not grep ori
2006-03-21 06:37:05 +08:00
define float @test() {
%tmp.i = load float* inttoptr (i32 186018016 to float*) ; <float> [#uses=1]
ret float %tmp.i
2006-03-21 06:37:05 +08:00
}