diff options
Diffstat (limited to 'src/compiler/nir/nir_constant_expressions.py')
-rw-r--r-- | src/compiler/nir/nir_constant_expressions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/nir/nir_constant_expressions.py b/src/compiler/nir/nir_constant_expressions.py index ed420c300f2..fca14602855 100644 --- a/src/compiler/nir/nir_constant_expressions.py +++ b/src/compiler/nir/nir_constant_expressions.py @@ -384,9 +384,9 @@ struct ${type}${width}_vec { % for name, op in sorted(opcodes.items()): static void evaluate_${name}(nir_const_value *_dst_val, - MAYBE_UNUSED unsigned num_components, + UNUSED unsigned num_components, ${"UNUSED" if op_bit_sizes(op) is None else ""} unsigned bit_size, - MAYBE_UNUSED nir_const_value **_src) + UNUSED nir_const_value **_src) { % if op_bit_sizes(op) is not None: switch (bit_size) { |