brintos

brintos / llvm-project-archived public Read only

0
0
Text · 525 B · f2167aa Raw
13 lines · plain
1; RUN: not opt -S -dxil-op-lower -mtriple=dxil-pc-shadermodel6.3-library %s 2>&1 | FileCheck %s2 3; DXIL operation dot2 does not support double overload type4; CHECK: in function dot_double25; CHECK-SAME: Cannot create Dot2 operation: Invalid overload type6 7define noundef double @dot_double2(double noundef %a1, double noundef %a2,8                                   double noundef %b1, double noundef %b2) {9entry:10  %dx.dot = call double @llvm.dx.dot2(double %a1, double %a2, double %b1, double %b2)11  ret double %dx.dot12}13