Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / SPIRV / hlsl-intrinsics / sqrt.ll
blob6882b77a427339620757ad3c94ca6c7284c33efe
1 ; RUN: llc -O0 -mtriple=spirv-unknown-unknown %s -o - | FileCheck %s
2 ; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv-unknown-unknown %s -o - -filetype=obj | spirv-val %}
4 ; CHECK: OpExtInstImport "GLSL.std.450"
6 define noundef float @sqrt_float(float noundef %a) {
7 entry:
8 ; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] Sqrt %[[#]]
9   %elt.sqrt = call float @llvm.sqrt.f32(float %a)
10   ret float %elt.sqrt
13 define noundef half @sqrt_half(half noundef %a) {
14 entry:
15 ; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] Sqrt %[[#]]
16   %elt.sqrt = call half @llvm.sqrt.f16(half %a)
17   ret half %elt.sqrt
20 declare half @llvm.sqrt.f16(half)
21 declare float @llvm.sqrt.f32(float)