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:

committed by
Marge Bot

parent
94d2a51453
commit
3a7bb38b70
@@ -1200,7 +1200,8 @@ apply_var_decoration(struct vtn_builder *b,
|
|||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
FALLTHROUGH;
|
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case SpvDecorationSpecId:
|
case SpvDecorationSpecId:
|
||||||
|
Reference in New Issue
Block a user