Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / DirectX / ceil.ll
blob15854714678014f4d5ed5e50dc264aca0a0ebd22
1 ; RUN: opt -S -dxil-op-lower < %s | FileCheck %s
3 ; Make sure dxil operation function calls for ceil are generated for float and half.
5 define noundef float @ceil_float(float noundef %a) {
6 entry:
7 ; CHECK:call float @dx.op.unary.f32(i32 28, float %{{.*}})
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:call half @dx.op.unary.f16(i32 28, half %{{.*}})
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)