Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / DirectX / acos.ll
blob31b08833f45a1238672e263e962341a9ab778225
1 ; RUN: opt -S -dxil-op-lower < %s | FileCheck %s
3 ; Make sure dxil operation function calls for acos are generated for float and half.
5 define noundef float @tan_float(float noundef %a) {
6 entry:
7 ; CHECK:call float @dx.op.unary.f32(i32 15, float %{{.*}})
8   %elt.acos = call float @llvm.acos.f32(float %a)
9   ret float %elt.acos
12 define noundef half @tan_half(half noundef %a) {
13 entry:
14 ; CHECK:call half @dx.op.unary.f16(i32 15, half %{{.*}})
15   %elt.acos = call half @llvm.acos.f16(half %a)
16   ret half %elt.acos
19 declare half @llvm.acos.f16(half)
20 declare float @llvm.acos.f32(float)