summaryrefslogtreecommitdiffstats
path: root/src/glsl/ast_array_index.cpp
diff options
context:
space:
mode:
authorVinson Lee <vlee@freedesktop.org>2015-03-03 18:46:13 -0800
committerVinson Lee <vlee@freedesktop.org>2015-03-04 17:20:25 -0800
commit29c23644cc8cfe9a1cdd75f79a96a1c9b49d26fa (patch)
treec8b9f848de64350ec55f9a0e854f4b8acb6d5623 /src/glsl/ast_array_index.cpp
parentb5eb6f769db71557c86c72c3352db149379fdade (diff)
downloadexternal_mesa3d-29c23644cc8cfe9a1cdd75f79a96a1c9b49d26fa.zip
external_mesa3d-29c23644cc8cfe9a1cdd75f79a96a1c9b49d26fa.tar.gz
external_mesa3d-29c23644cc8cfe9a1cdd75f79a96a1c9b49d26fa.tar.bz2
glsl: Fix GCC unused-variable warning in release build.
CXX ast_array_index.lo ast_array_index.cpp: In function ‘void update_max_array_access(ir_rvalue*, int, YYLTYPE*, _mesa_glsl_parse_state*)’: ast_array_index.cpp:86:30: warning: unused variable ‘interface_type’ [-Wunused-variable] const glsl_type *interface_type = ^ Signed-off-by: Vinson Lee <vlee@freedesktop.org> Reviewed-by: Timothy Arceri <t_arceri@yahoo.com.au>
Diffstat (limited to 'src/glsl/ast_array_index.cpp')
-rw-r--r--src/glsl/ast_array_index.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/glsl/ast_array_index.cpp b/src/glsl/ast_array_index.cpp
index ff0c757..ecef651 100644
--- a/src/glsl/ast_array_index.cpp
+++ b/src/glsl/ast_array_index.cpp
@@ -83,11 +83,9 @@ update_max_array_access(ir_rvalue *ir, int idx, YYLTYPE *loc,
if (deref_var != NULL) {
if (deref_var->var->is_interface_instance()) {
- const glsl_type *interface_type =
- deref_var->var->get_interface_type();
unsigned field_index =
deref_record->record->type->field_index(deref_record->field);
- assert(field_index < interface_type->length);
+ assert(field_index < deref_var->var->get_interface_type()->length);
unsigned *const max_ifc_array_access =
deref_var->var->get_max_ifc_array_access();