diff options
author | Vinson Lee <[email protected]> | 2010-11-17 22:42:51 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-11-17 22:43:52 -0800 |
commit | 855c66bde7e51c3486e4c6abc7096a1a949a98e1 (patch) | |
tree | 25ad09b130c7e0f65cfd161be98dc361edd35140 /src | |
parent | ca9f99d9c5d75decb73bbc5b046c2055410504ff (diff) |
glsl: Fix 'control reaches end of non-void function' warning.
Fix this GCC warning.
ir.cpp: In static member function
'static unsigned int ir_expression::get_num_operands(ir_expression_operation)':
ir.cpp:199: warning: control reaches end of non-void function
Diffstat (limited to 'src')
-rw-r--r-- | src/glsl/ir.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/glsl/ir.cpp b/src/glsl/ir.cpp index 4468d9f8324..8c5441d332b 100644 --- a/src/glsl/ir.cpp +++ b/src/glsl/ir.cpp @@ -196,6 +196,9 @@ ir_expression::get_num_operands(ir_expression_operation op) if (op <= ir_last_binop) return 2; + + assert(false); + return 0; } static const char *const operator_strs[] = { |