aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/DirectX/sqrt_error.ll
blob: af1b0d0cc51446ad031f7587f2a41843245fa6a6 (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 sqrt does not support double overload type
; CHECK: in function sqrt_double
; CHECK-SAME: Cannot create Sqrt operation: Invalid overload type

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