diff options
author | Eric Anholt <eric@anholt.net> | 2010-07-27 10:08:38 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2010-07-27 10:08:38 -0700 |
commit | fdbaca931a504a70d6fec54e2f85caac6281377d (patch) | |
tree | 104dc5dfdbf633f30f03867f8152531cff8f1c0c /src | |
parent | 832aad989e3d319a8aaac046aa49df25da134d82 (diff) |
ir_to_mesa: Fix stray "break" that broke functions of >1 argument.
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/program/ir_to_mesa.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/program/ir_to_mesa.cpp b/src/mesa/program/ir_to_mesa.cpp index 2fd0507c2f..defacc7fdc 100644 --- a/src/mesa/program/ir_to_mesa.cpp +++ b/src/mesa/program/ir_to_mesa.cpp @@ -1498,7 +1498,6 @@ ir_to_mesa_visitor::get_function_signature(ir_function_signature *sig) this->variables.push_tail(storage); this->next_temp += type_size(param->type); - break; } if (!sig->return_type->is_void()) { |