diff options
author | Vinson Lee <[email protected]> | 2010-09-18 00:14:20 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-09-18 00:14:20 -0700 |
commit | a822ae3f1a14ddd00a6368d767213ea42d00e7fb (patch) | |
tree | de69baf84146adf25f4ae5d2a00933169f005b6b /src/glsl | |
parent | 9ea2a3af9c3e150e212f2bcbb23ae05b4779d702 (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')
-rw-r--r-- | src/glsl/lower_variable_index_to_cond_assign.cpp | 1 |
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 2044199d27b..68f30ca0ef8 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, |