Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / SPIRV / hlsl-intrinsics / trunc.ll
blobd75b7fa5a381d836001480f551f2c40dd6fdb4cb
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 @trunc_float(float noundef %a) {
7 entry:
8 ; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] Trunc %[[#]]
9   %elt.trunc = call float @llvm.trunc.f32(float %a)
10   ret float %elt.trunc
13 define noundef half @trunc_half(half noundef %a) {
14 entry:
15 ; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] Trunc %[[#]]
16   %elt.trunc = call half @llvm.trunc.f16(half %a)
17   ret half %elt.trunc
20 declare half @llvm.trunc.f16(half)
21 declare float @llvm.trunc.f32(float)