blob: 1880b1d38ba3c29da58a64acd9823dc058187f3b [file]
; RUN: not opt -S -dxil-op-lower %s 2>&1 | FileCheck %s
; DXIL operation atan does not support double overload type
; CHECK: LLVM ERROR: Invalid Overload
define noundef double @atan_double(double noundef %a) {
entry:
%1 = call double @llvm.atan.f64(double %a)
ret double %1
}