diff options
author | Jason Ekstrand <[email protected]> | 2017-06-29 10:33:23 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-07-05 15:26:51 -0700 |
commit | cc577ca3772980cafe04d3f20465b5a5d947c45d (patch) | |
tree | 84f3249c3138bf153008dbc2935f022b5dd200f4 /src | |
parent | 0673bbfd9ba16be81b6ab84a587735496af4fb16 (diff) |
nir/spirv: Move a "}"
It's closing a "{" at the begining of a switch case.
Reviewed-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Connor Abbott <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/compiler/spirv/vtn_variables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/spirv/vtn_variables.c b/src/compiler/spirv/vtn_variables.c index 974adb5d5c7..31d1d76f333 100644 --- a/src/compiler/spirv/vtn_variables.c +++ b/src/compiler/spirv/vtn_variables.c @@ -1490,10 +1490,10 @@ vtn_handle_variables(struct vtn_builder *b, SpvOp opcode, */ vtn_foreach_decoration(b, interface_type->val, var_decoration_cb, var); break; + } case vtn_variable_mode_param: unreachable("Not created through OpVariable"); - } case vtn_variable_mode_ubo: case vtn_variable_mode_ssbo: |