[RISCV] Match vcompress during shuffle lowering (#117748)
[llvm-project.git] / llvm / test / CodeGen / SPIRV / hlsl-intrinsics / ceil.ll
blob29ac39ef9b4183f3aebdbaf3406e10523643e68f
1 ; RUN: llc -O0 -verify-machineinstrs -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 %}
3 ; CHECK: OpExtInstImport "GLSL.std.450"
5 define noundef float @ceil_float(float noundef %a) {
6 entry:
7 ; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] Ceil %[[#]]
8   %elt.ceil = call float @llvm.ceil.f32(float %a)
9   ret float %elt.ceil
12 define noundef half @ceil_half(half noundef %a) {
13 entry:
14 ; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] Ceil %[[#]]
15   %elt.ceil = call half @llvm.ceil.f16(half %a)
16   ret half %elt.ceil
19 declare half @llvm.ceil.f16(half)
20 declare float @llvm.ceil.f32(float)