blob: afd8b96db26e380101a747f56ea8edceea85db56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
; RUN: llc -O0 -verify-machineinstrs -mtriple=spirv-unknown-vulkan %s -o - | FileCheck %s
; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv-unknown-vulkan %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)
|