From 4300693a078ee29e2be3c05dc0c9383b571786d0 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Tue, 25 Aug 2015 17:21:47 +0100 Subject: [PATCH] nir: Silence missing field initializer warnings for vectors in nir_constant_expressions nir/nir_constant_expressions.c: In function 'evaluate_ball2': nir/nir_constant_expressions.c:279:7: warning: missing initializer for field 'z' of 'struct bool_vec' [-Wmissing-field-initializers] }; ^ nir/nir_constant_expressions.c:234:10: note: 'z' declared here bool z; ^ Number of total warnings in my build reduced from 2532 to 2304 (reduction of 228). v2: Initialize bool vectors with 0 instead of false to keep the generator simpler. Suggested by Ken. Signed-off-by: Ian Romanick Reviewed-by: Kenneth Graunke --- src/compiler/nir/nir_constant_expressions.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/compiler/nir/nir_constant_expressions.py b/src/compiler/nir/nir_constant_expressions.py index 96d52557bd7..6b4d071236c 100644 --- a/src/compiler/nir/nir_constant_expressions.py +++ b/src/compiler/nir/nir_constant_expressions.py @@ -299,6 +299,9 @@ evaluate_${name}(unsigned num_components, unsigned bit_size, _src[${j}].${get_const_field(input_types[j])}[${k}], % endif % endfor + % for k in range(op.input_sizes[j], 4): + 0, + % endfor }; % endfor -- 2.30.2