Re: [Mesa-dev] [PATCH 06/17] ac/nir: Fix compiler warning about uninitialized dw_addr.

2018-02-11 Thread Bas Nieuwenhuizen
Reviewed-by: Bas Nieuwenhuizen 

On Sat, Feb 10, 2018 at 5:32 PM, Eric Anholt  wrote:
> Even switching the def's condition to be the same chip revision check as
> the use, the compiler doesn't figure it out.  Just NULL-init it.
>
> Fixes: ec53e527421d ("ac/nir: Add ES output to LDS for GFX9.")
> Cc: Bas Nieuwenhuizen 
> ---
>  src/amd/common/ac_nir_to_llvm.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c
> index cd128054962d..5485062a5bd6 100644
> --- a/src/amd/common/ac_nir_to_llvm.c
> +++ b/src/amd/common/ac_nir_to_llvm.c
> @@ -6099,7 +6099,7 @@ handle_es_outputs_post(struct nir_to_llvm_context *ctx,
> }
>
> for (unsigned i = 0; i < RADEON_LLVM_MAX_OUTPUTS; ++i) {
> -   LLVMValueRef dw_addr;
> +   LLVMValueRef dw_addr = NULL;
> LLVMValueRef *out_ptr = >nir->outputs[i * 4];
> int param_index;
> int length = 4;
> --
> 2.15.0
>
___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev


[Mesa-dev] [PATCH 06/17] ac/nir: Fix compiler warning about uninitialized dw_addr.

2018-02-10 Thread Eric Anholt
Even switching the def's condition to be the same chip revision check as
the use, the compiler doesn't figure it out.  Just NULL-init it.

Fixes: ec53e527421d ("ac/nir: Add ES output to LDS for GFX9.")
Cc: Bas Nieuwenhuizen 
---
 src/amd/common/ac_nir_to_llvm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c
index cd128054962d..5485062a5bd6 100644
--- a/src/amd/common/ac_nir_to_llvm.c
+++ b/src/amd/common/ac_nir_to_llvm.c
@@ -6099,7 +6099,7 @@ handle_es_outputs_post(struct nir_to_llvm_context *ctx,
}
 
for (unsigned i = 0; i < RADEON_LLVM_MAX_OUTPUTS; ++i) {
-   LLVMValueRef dw_addr;
+   LLVMValueRef dw_addr = NULL;
LLVMValueRef *out_ptr = >nir->outputs[i * 4];
int param_index;
int length = 4;
-- 
2.15.0

___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev