Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / DirectX / exp2_error.ll
blob6b9126785fd4b87475d3dd2c07d945ee3e75e56e
1 ; RUN: not opt -S -dxil-op-lower %s 2>&1 | FileCheck %s
3 ; DXIL operation exp2 does not support double overload type
4 ; CHECK: LLVM ERROR: Invalid Overload
6 define noundef double @exp2_double(double noundef %a) #0 {
7 entry:
8   %a.addr = alloca double, align 8
9   store double %a, ptr %a.addr, align 8
10   %0 = load double, ptr %a.addr, align 8
11   %elt.exp2 = call double @llvm.exp2.f64(double %0)
12   ret double %elt.exp2