Mesa (master): nir: stop gcc warning about uninitialised variables

Timothy Arceri tarceri at kemper.freedesktop.org
Thu Dec 29 02:47:20 UTC 2016


Module: Mesa
Branch: master
Commit: 5f323198ea598b97f3a0d7bc0a11eb92a118c87a
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=5f323198ea598b97f3a0d7bc0a11eb92a118c87a

Author: Timothy Arceri <timothy.arceri at collabora.com>
Date:   Thu Dec 29 13:18:59 2016 +1100

nir: stop gcc warning about uninitialised variables

Reviewed-by: Jason Ekstrand <jason at jlekstrand.net>

---

 src/compiler/nir/nir_opt_if.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/compiler/nir/nir_opt_if.c b/src/compiler/nir/nir_opt_if.c
index a804ee9..ec66175 100644
--- a/src/compiler/nir/nir_opt_if.c
+++ b/src/compiler/nir/nir_opt_if.c
@@ -120,7 +120,7 @@ opt_peel_loop_initial_if(nir_loop *loop)
    /* We already know we have exactly one continue */
    assert(exec_list_length(&cond_phi->srcs) == 2);
 
-   uint32_t entry_val, continue_val;
+   uint32_t entry_val = 0, continue_val = 0;
    nir_foreach_phi_src(src, cond_phi) {
       assert(src->src.is_ssa);
       nir_const_value *const_src = nir_src_as_const_value(src->src);




More information about the mesa-commit mailing list