llvm/llvm/test/CodeGen/SPIRV/hlsl-intrinsics/exp.ll

; RUN: llc -verify-machineinstrs -O0 -mtriple=spirv-unknown-unknown %s -o - | FileCheck %s
; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv-unknown-unknown %s -o - -filetype=obj | spirv-val %}

; CHECK: OpExtInstImport "GLSL.std.450"

define noundef float @exp_float(float noundef %a) {
entry:
; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] Exp %[[#]]
  %elt.exp = call float @llvm.exp.f32(float %a)
  ret float %elt.exp
}

define noundef half @exp_half(half noundef %a) {
entry:
; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] Exp %[[#]]
  %elt.exp = call half @llvm.exp.f16(half %a)
  ret half %elt.exp
}

declare half @llvm.exp.f16(half)
declare float @llvm.exp.f32(float)