summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/DirectX/round_error.ll
blob: 3bd87b2bbf02007916b67fe0a2e89c8a4ffd3970 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: not opt -S -dxil-op-lower %s 2>&1 | FileCheck %s

; This test is expected to fail with the following error
; CHECK: LLVM ERROR: Invalid Overload Type

define noundef double @round_double(double noundef %a) #0 {
entry:
  %a.addr = alloca double, align 8
  store double %a, ptr %a.addr, align 8
  %0 = load double, ptr %a.addr, align 8
  %elt.round = call double @llvm.round.f64(double %0)
  ret double %elt.round
}