diff options
author | Timothy Arceri <[email protected]> | 2020-07-08 20:35:37 +1000 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-07-10 00:32:51 +0000 |
commit | 81317e2c144e792a5cecaa6b72a7ab7e315151b8 (patch) | |
tree | 14fc75c54d054d5078a8683713a5163ace2142f4 | |
parent | 38218ab7e20e7f73cce61b6033cce59fa81efbca (diff) |
lima: add missing break
Reviewed-by: Erico Nunes <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5799>
-rw-r--r-- | src/gallium/drivers/lima/ir/pp/node_to_instr.c | 1 |
1 files changed, 1 insertions, 0 deletions
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)) |