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

10 lines
323 B
LLVM
Raw Normal View History

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