diff options
author | Iago Toral Quiroga <[email protected]> | 2015-09-28 12:59:33 +0200 |
---|---|---|
committer | Iago Toral Quiroga <[email protected]> | 2015-09-29 10:53:08 +0200 |
commit | 6bf718fec22f605702c7d15503d4dbc3c2be35e6 (patch) | |
tree | 9f0b2c6e7375517f3e99d78d5a56bd06767bf748 /src/glsl | |
parent | bea66d22f2c0e97242c15652376ae4e82779f343 (diff) |
glsl: Fix unused value warning reported by Coverity
We don't use param in this part of the code, so no point in advancing
the pointer forward:
>>> CID 1324983: Code maintainability issues (UNUSED_VALUE)
>>> Assigning value from "param->get_next()" to "param" here, but that stored value is overwritten before it can be used.
Reviewed-by: Kristian Høgsberg <[email protected]>
Diffstat (limited to 'src/glsl')
-rw-r--r-- | src/glsl/lower_ubo_reference.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/glsl/lower_ubo_reference.cpp b/src/glsl/lower_ubo_reference.cpp index 31885cd3dec..4e09b080e62 100644 --- a/src/glsl/lower_ubo_reference.cpp +++ b/src/glsl/lower_ubo_reference.cpp @@ -1099,13 +1099,11 @@ lower_ubo_reference_visitor::lower_ssbo_atomic_intrinsic(ir_call *ir) const glsl_type *type = deref->type->base_type == GLSL_TYPE_INT ? glsl_type::int_type : glsl_type::uint_type; - param = param->get_next(); sig_param = new(mem_ctx) ir_variable(type, "data1", ir_var_function_in); sig_params.push_tail(sig_param); if (param_count == 3) { - param = param->get_next(); sig_param = new(mem_ctx) ir_variable(type, "data2", ir_var_function_in); sig_params.push_tail(sig_param); |