mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-07 12:30:44 +00:00
7150fbf236
Mesa still has a use of llvm.AMDGPU.rsq.f64 remaining. Also fix mismatch with non-IEEE rsq selecting to IEEE rsq. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@275617 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
454 B
LLVM
12 lines
454 B
LLVM
; RUN: llc -march=r600 -mcpu=cypress -verify-machineinstrs < %s | FileCheck -check-prefix=EG %s
|
|
|
|
declare float @llvm.r600.recipsqrt.clamped.f32(float) nounwind readnone
|
|
|
|
; EG-LABEL: {{^}}rsq_clamped_f32:
|
|
; EG: RECIPSQRT_CLAMPED
|
|
define void @rsq_clamped_f32(float addrspace(1)* %out, float %src) nounwind {
|
|
%rsq_clamped = call float @llvm.r600.recipsqrt.clamped.f32(float %src)
|
|
store float %rsq_clamped, float addrspace(1)* %out, align 4
|
|
ret void
|
|
}
|