Re: [Mesa-dev] [PATCH] ac/nir: silence maybe-uninitialized warnings

2017-08-28 Thread Nicolai Hähnle
On 28.08.2017 10:30, Nicolai Hähnle wrote: On 27.08.2017 23:43, Grazvydas Ignotas wrote: These are likely false positives, but are also annoying because they show up on every "make install", which causes ac_nir_to_llvm to be rebuilt here. Initializing those variables to NULL should be harmless e

Re: [Mesa-dev] [PATCH] ac/nir: silence maybe-uninitialized warnings

2017-08-28 Thread Nicolai Hähnle
On 27.08.2017 23:43, Grazvydas Ignotas wrote: These are likely false positives, but are also annoying because they show up on every "make install", which causes ac_nir_to_llvm to be rebuilt here. Initializing those variables to NULL should be harmless even when unnecessary. Signed-off-by: Grazvy

[Mesa-dev] [PATCH] ac/nir: silence maybe-uninitialized warnings

2017-08-27 Thread Grazvydas Ignotas
These are likely false positives, but are also annoying because they show up on every "make install", which causes ac_nir_to_llvm to be rebuilt here. Initializing those variables to NULL should be harmless even when unnecessary. Signed-off-by: Grazvydas Ignotas --- src/amd/common/ac_nir_to_llvm.