[mlir][LLVM] `LLVMTypeConverter`: Tighten materialization checks (#116532)
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / llvm.r600.recipsqrt.ieee.ll
blobba261e26d63c9634cac77fe051cf1192f2104ac7
1 ; RUN: llc -mtriple=r600 -mcpu=cypress -verify-machineinstrs < %s | FileCheck -check-prefix=EG %s
3 declare float @llvm.r600.recipsqrt.ieee.f32(float) nounwind readnone
5 ; EG-LABEL: {{^}}recipsqrt.ieee_f32:
6 ; EG: RECIPSQRT_IEEE
7 define amdgpu_kernel void @recipsqrt.ieee_f32(ptr addrspace(1) %out, float %src) nounwind {
8   %recipsqrt.ieee = call float @llvm.r600.recipsqrt.ieee.f32(float %src) nounwind readnone
9   store float %recipsqrt.ieee, ptr addrspace(1) %out, align 4
10   ret void
13 ; TODO: Really these should be constant folded
14 ; EG-LABEL: {{^}}recipsqrt.ieee_f32_constant_4.0
15 ; EG: RECIPSQRT_IEEE
16 define amdgpu_kernel void @recipsqrt.ieee_f32_constant_4.0(ptr addrspace(1) %out) nounwind {
17   %recipsqrt.ieee = call float @llvm.r600.recipsqrt.ieee.f32(float 4.0) nounwind readnone
18   store float %recipsqrt.ieee, ptr addrspace(1) %out, align 4
19   ret void
22 ; EG-LABEL: {{^}}recipsqrt.ieee_f32_constant_100.0
23 ; EG: RECIPSQRT_IEEE
24 define amdgpu_kernel void @recipsqrt.ieee_f32_constant_100.0(ptr addrspace(1) %out) nounwind {
25   %recipsqrt.ieee = call float @llvm.r600.recipsqrt.ieee.f32(float 100.0) nounwind readnone
26   store float %recipsqrt.ieee, ptr addrspace(1) %out, align 4
27   ret void