[TableGen] Fix validateOperandClass for non Phyical Reg (#118146)
[llvm-project.git] / llvm / test / CodeGen / SPIRV / hlsl-intrinsics / log2.ll
blob7bbd4596e99f77d1bd24f5438cf417d51a6fdf79
1 ; RUN: llc -O0 -verify-machineinstrs -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 @log2_float(float noundef %a) {
7 entry:
8 ; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] Log2 %[[#]]
9   %elt.log2 = call float @llvm.log2.f32(float %a)
10   ret float %elt.log2
13 define noundef half @log2_half(half noundef %a) {
14 entry:
15 ; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] Log2 %[[#]]
16   %elt.log2 = call half @llvm.log2.f16(half %a)
17   ret half %elt.log2
20 declare half @llvm.log2.f16(half)
21 declare float @llvm.log2.f32(float)