mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-09 08:20:12 +01:00
nir: Add missing break into switch in construct_value()
There seemed to be missing one break in nested switchcases. Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> Reviewed-by: Antia Puentes <apuentes@igalia.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
31631d8515
commit
940da2ce0e
1 changed files with 1 additions and 0 deletions
|
|
@ -521,6 +521,7 @@ construct_value(const nir_search_value *value,
|
|||
default:
|
||||
unreachable("unknown bit size");
|
||||
}
|
||||
break;
|
||||
|
||||
case nir_type_bool32:
|
||||
load->value.u32[0] = c->data.u;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue