22 lines · plain
1; RUN: llc -O0 -verify-machineinstrs -mtriple=spirv-unknown-vulkan %s -o - | FileCheck %s2; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv-unknown-vulkan %s -o - -filetype=obj | spirv-val %}3 4; CHECK: OpExtInstImport "GLSL.std.450"5 6define noundef float @pow_float(float noundef %a,float noundef %b) {7entry:8; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] Pow %[[#]]9 %elt.pow = call float @llvm.pow.f32(float %a,float %b)10 ret float %elt.pow11}12 13define noundef half @pow_half(half noundef %a, half noundef %b) {14entry:15; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] Pow %[[#]]16 %elt.pow = call half @llvm.pow.f16(half %a, half %b)17 ret half %elt.pow18}19 20declare half @llvm.pow.f16(half,half)21declare float @llvm.pow.f32(float,float)22