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 @sin_float(float noundef %a) {
8 ; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] Sin %[[#]]
9 %elt.sin = call float @llvm.sin.f32(float %a)
13 define noundef half @sin_half(half noundef %a) {
15 ; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] Sin %[[#]]
16 %elt.sin = call half @llvm.sin.f16(half %a)
20 declare half @llvm.sin.f16(half)
21 declare float @llvm.sin.f32(float)