aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/DirectX/cos_error.ll
blob: 6e3513490f781785f43626bc54f505335979376b (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: not opt -S -dxil-op-lower -mtriple=dxil-pc-shadermodel6.3-library %s 2>&1 | FileCheck %s

; DXIL operation cos does not support double overload type
; CHECK: in function cos_double
; CHECK-SAME: Cannot create Cos operation: Invalid overload type

define noundef double @cos_double(double noundef %a) {
entry:
  %elt.cos = call double @llvm.cos.f64(double %a)
  ret double %elt.cos
}