[clang] [llvm] [HLSL][DXIL][SPIRV] Added WaveActiveBitOr HLSL intrinsic (PR #165156)
Joshua Batista via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 4 11:47:35 PST 2026
================
@@ -0,0 +1,23 @@
+// RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel6.6-library %s -emit-llvm-only -disable-llvm-passes -verify
+
+uint test_too_few_arg() {
+ return __builtin_hlsl_wave_active_bit_or();
+ // expected-error at -1 {{too few arguments to function call, expected 1, have 0}}
+}
+
+uint test_too_many_arg(uint p0) {
+ return __builtin_hlsl_wave_active_bit_or(p0, p0);
+ // expected-error at -1 {{too many arguments to function call, expected 1, have 2}}
+}
+
+struct S { uint x; };
+
+S test_expr_struct_type_check(S p0) {
+ return __builtin_hlsl_wave_active_max(p0);
----------------
bob80905 wrote:
This should be testing wave active bit or, not max
https://github.com/llvm/llvm-project/pull/165156
More information about the cfe-commits
mailing list