[win/asan] GetInstructionSize: Fix `83 E4 XX` to return 3. (#119644)
[llvm-project.git] / llvm / test / CodeGen / DirectX / acos_error.ll
blobcba49cd0c7260193d091125a97f7e1347738373b
1 ; RUN: not opt -S -dxil-op-lower -mtriple=dxil-pc-shadermodel6.3-library %s 2>&1 | FileCheck %s
3 ; DXIL operation acos does not support double overload type
4 ; CHECK: in function acos_double
5 ; CHECK-SAME: Cannot create ACos operation: Invalid overload type
7 define noundef double @acos_double(double noundef %a) {
8 entry:
9   %1 = call double @llvm.acos.f64(double %a)
10   ret double %1