spirv: Explicitly break when finished handling SpvDecorationBuiltIn

When tyding up this section in 1e5b09f42f ("spirv: Tidy some repeated
if checks by using a switch statement.") the break got lost.  It is
not a real problem because the next case just break, but better to
have it explicitly here instead of a FALLTHROUGH.

Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9440>
This commit is contained in:
Caio Marcelo de Oliveira Filho
2021-03-03 14:50:21 -08:00
committed by Marge Bot
parent 94d2a51453
commit 3a7bb38b70

View File

@@ -1200,7 +1200,8 @@ apply_var_decoration(struct vtn_builder *b,
default:
break;
}
FALLTHROUGH;
break;
}
case SpvDecorationSpecId: