Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / DirectX / tan.ll
blob567ab02d40f918890a9c105575c332c2b1cdfbbd
1 ; RUN: opt -S -dxil-op-lower < %s | FileCheck %s
3 ; Make sure dxil operation function calls for tan are generated for float and half.
5 define noundef float @tan_float(float noundef %a) #0 {
6 entry:
7 ; CHECK:call float @dx.op.unary.f32(i32 14, float %{{.*}})
8   %elt.tan = call float @llvm.tan.f32(float %a)
9   ret float %elt.tan
12 define noundef half @tan_half(half noundef %a) #0 {
13 entry:
14 ; CHECK:call half @dx.op.unary.f16(i32 14, half %{{.*}})
15   %elt.tan = call half @llvm.tan.f16(half %a)
16   ret half %elt.tan
19 declare half @llvm.tan.f16(half)
20 declare float @llvm.tan.f32(float)