Module: Mesa Branch: master Commit: 81317e2c144e792a5cecaa6b72a7ab7e315151b8 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=81317e2c144e792a5cecaa6b72a7ab7e315151b8
Author: Timothy Arceri <[email protected]> Date: Wed Jul 8 20:35:37 2020 +1000 lima: add missing break Reviewed-by: Erico Nunes <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5799> --- src/gallium/drivers/lima/ir/pp/node_to_instr.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers/lima/ir/pp/node_to_instr.c b/src/gallium/drivers/lima/ir/pp/node_to_instr.c index 52632c88ce6..efbde11d05e 100644 --- a/src/gallium/drivers/lima/ir/pp/node_to_instr.c +++ b/src/gallium/drivers/lima/ir/pp/node_to_instr.c @@ -197,6 +197,7 @@ static bool ppir_do_one_node_to_instr(ppir_block *block, ppir_node *node) return false; break; } + break; } case ppir_node_type_discard: if (!create_new_instr(block, node)) _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
