Mesa (master): glsl: silence a couple warnings in find_active_atomic_counters()

Brian Paul brianp at kemper.freedesktop.org
Thu Jan 23 15:21:56 UTC 2014


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

Author: Brian Paul <brianp at vmware.com>
Date:   Wed Jan 22 10:03:15 2014 -0800

glsl: silence a couple warnings in find_active_atomic_counters()

Silence unitialized variable 'id' warning.  Silence unused 'found' warning.
Only seen in release builds.

Reviewed-by: Marek Olšák <marek.olsak at amd.com>

---

 src/glsl/link_atomics.cpp |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/glsl/link_atomics.cpp b/src/glsl/link_atomics.cpp
index db9c539..d92cdb1 100644
--- a/src/glsl/link_atomics.cpp
+++ b/src/glsl/link_atomics.cpp
@@ -105,9 +105,10 @@ namespace {
             ir_variable *var = ((ir_instruction *)node)->as_variable();
 
             if (var && var->type->contains_atomic()) {
-               unsigned id;
+               unsigned id = 0;
                bool found = prog->UniformHash->get(id, var->name);
                assert(found);
+               (void) found;
                active_atomic_buffer *buf = &buffers[var->data.binding];
 
                /* If this is the first time the buffer is used, increment




More information about the mesa-commit mailing list