From 81f3a5a0358074efa4a72512149283c92e7760ee Mon Sep 17 00:00:00 2001 From: Pierre-Eric Pelloux-Prayer Date: Tue, 16 Sep 2025 11:07:22 +0200 Subject: [PATCH] nir/opcodes: remove invalid comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "\b" is interpreted by python which results in an invalid char being written to the C file. Reviewed-by: Marek Olšák Part-of: --- src/compiler/nir/nir_constant_expressions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/nir/nir_constant_expressions.py b/src/compiler/nir/nir_constant_expressions.py index 7b4a6622e20..0d000f2229e 100644 --- a/src/compiler/nir/nir_constant_expressions.py +++ b/src/compiler/nir/nir_constant_expressions.py @@ -71,7 +71,7 @@ template = """\ #include "nir.h" /** - * \brief Checks if the provided value is a denorm and flushes it to zero. + * Checks if the provided value is a denorm and flushes it to zero. */ static void constant_denorm_flush_to_zero(nir_const_value *value, unsigned bit_size)