1; RUN: not opt -S -dxil-op-lower -mtriple=dxil-pc-shadermodel6.0-library %s 2>&1 | FileCheck %s 2; The sin intrinsic needs to be scalarized before op lowering 3 4; CHECK: error: 5; CHECK-SAME: in function sin_vector 6; CHECK-SAME: Cannot create Sin operation: Invalid overload type 7 8define <4 x float> @sin_vector(<4 x float> %a) { 9 %x = call <4 x float> @llvm.sin.v4f32(<4 x float> %a) 10 ret <4 x float> %x 11} 12