xref: /llvm-project/llvm/test/CodeGen/DirectX/normalize_error.ll (revision b55c52c047a167f42abbde9a33356cfb96b82c7f)
1; RUN: not opt -S -dxil-intrinsic-expansion -dxil-op-lower -mtriple=dxil-pc-shadermodel6.3-library %s 2>&1 | FileCheck %s
2
3; DXIL operation normalize does not support double overload type
4; CHECK: Cannot create Dot2 operation: Invalid overload type
5
6define noundef <2 x double> @test_normalize_double2(<2 x double> noundef %p0) {
7entry:
8  %hlsl.normalize = call <2 x double> @llvm.dx.normalize.v2f32(<2 x double> %p0)
9  ret <2 x double> %hlsl.normalize
10}
11