Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / SPIRV / hlsl-intrinsics / pow.ll
blob7fae9637946fa2b6205c7d626a7ab344a89c03b0
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 @pow_float(float noundef %a,float noundef %b) {
7 entry:
8 ; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] Pow %[[#]]
9   %elt.pow = call float @llvm.pow.f32(float %a,float %b)
10   ret float %elt.pow
13 define noundef half @pow_half(half noundef %a, half noundef %b) {
14 entry:
15 ; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] Pow %[[#]]
16   %elt.pow = call half @llvm.pow.f16(half %a, half %b)
17   ret half %elt.pow
20 declare half @llvm.pow.f16(half,half)
21 declare float @llvm.pow.f32(float,float)