brintos

brintos / llvm-project-archived public Read only

0
0
Text · 661 B · 3b3edc1 Raw
14 lines · plain
1; RUN: not llc -verify-machineinstrs -O0 -mtriple=spirv64-unknown-unknown %s -o /dev/null 2>&1 | FileCheck %s2; RUN: not llc -verify-machineinstrs -O0 -mtriple=spirv32-unknown-unknown %s -o /dev/null 2>&1 | FileCheck %s3 4; CHECK: LLVM ERROR: %{{.*}} = G_INTRINSIC intrinsic(@llvm.spv.reflect), %{{.*}}, %{{.*}} is only supported with the GLSL extended instruction set.5 6define noundef <4 x float> @reflect_float4(<4 x float> noundef %a, <4 x float> noundef %b) {7entry:8  %spv.reflect = call <4 x float> @llvm.spv.reflect.f32(<4 x float> %a, <4 x float> %b)9  ret <4 x float> %spv.reflect10}11 12declare <4 x float> @llvm.spv.reflect.f32(<4 x float>, <4 x float>)13 14