File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -257,14 +257,19 @@ bool all(double4);
257257// / \brief Logically ands two boolean vectors elementwise and produces a bool
258258// / vector output.
259259
260+ // TODO: Clean up clang-format marker once we've resolved
261+ // https://github.com/llvm/llvm-project/issues/127851
262+ //
263+ // clang-format off
260264_HLSL_BUILTIN_ALIAS (__builtin_hlsl_and)
261- bool and (bool x, bool y);
265+ bool and(bool x, bool y);
262266_HLSL_BUILTIN_ALIAS (__builtin_hlsl_and)
263- bool2 and (bool2 x, bool2 y);
267+ bool2 and(bool2 x, bool2 y);
264268_HLSL_BUILTIN_ALIAS (__builtin_hlsl_and)
265- bool3 and (bool3 x, bool3 y);
269+ bool3 and(bool3 x, bool3 y);
266270_HLSL_BUILTIN_ALIAS (__builtin_hlsl_and)
267- bool4 and (bool4 x, bool4 y);
271+ bool4 and(bool4 x, bool4 y);
272+ // clang-format on
268273
269274// ===----------------------------------------------------------------------===//
270275// any builtins
You can’t perform that action at this time.
0 commit comments