summaryrefslogtreecommitdiff
path: root/src/glsl/lower_variable_index_to_cond_assign.cpp
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2010-09-18 00:14:20 -0700
committerVinson Lee <vlee@vmware.com>2010-09-18 00:14:20 -0700
commita822ae3f1a14ddd00a6368d767213ea42d00e7fb (patch)
treede69baf84146adf25f4ae5d2a00933169f005b6b /src/glsl/lower_variable_index_to_cond_assign.cpp
parent9ea2a3af9c3e150e212f2bcbb23ae05b4779d702 (diff)
glsl: Fix 'control reaches end of non-void function' warning.
Fixes this GCC warning. lower_variable_index_to_cond_assign.cpp: In member function 'bool variable_index_to_cond_assign_visitor::needs_lowering(ir_dereference_array*) const': lower_variable_index_to_cond_assign.cpp:261: warning: control reaches end of non-void function
Diffstat (limited to 'src/glsl/lower_variable_index_to_cond_assign.cpp')
-rw-r--r--src/glsl/lower_variable_index_to_cond_assign.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/lower_variable_index_to_cond_assign.cpp b/src/glsl/lower_variable_index_to_cond_assign.cpp
index 2044199d27..68f30ca0ef 100644
--- a/src/glsl/lower_variable_index_to_cond_assign.cpp
+++ b/src/glsl/lower_variable_index_to_cond_assign.cpp
@@ -258,6 +258,7 @@ public:
}
assert(!"Should not get here.");
+ return false;
}
ir_variable *convert_dereference_array(ir_dereference_array *orig_deref,