summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Arceri <timothy.arceri@collabora.com>2016-10-04 11:25:25 +1100
committerTimothy Arceri <timothy.arceri@collabora.com>2016-10-04 22:33:51 +1100
commit338d3c0b0f9c56e68c31ff542513fb7fa9f1c099 (patch)
tree35d78f3b6dc2e89af9159f60265b0afa86efb6d2
parent298c2e03d78c3abeb588306acd67aa88b197ee61 (diff)
downloadexternal_mesa3d-338d3c0b0f9c56e68c31ff542513fb7fa9f1c099.zip
external_mesa3d-338d3c0b0f9c56e68c31ff542513fb7fa9f1c099.tar.gz
external_mesa3d-338d3c0b0f9c56e68c31ff542513fb7fa9f1c099.tar.bz2
spirv: replace assert() with unreachable()
This fixes an uninitialized warning for is_vertex_input. Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
-rw-r--r--src/compiler/spirv/vtn_variables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/spirv/vtn_variables.c b/src/compiler/spirv/vtn_variables.c
index 44c65ae..634058c 100644
--- a/src/compiler/spirv/vtn_variables.c
+++ b/src/compiler/spirv/vtn_variables.c
@@ -1054,7 +1054,7 @@ var_decoration_cb(struct vtn_builder *b, struct vtn_value *val, int member,
is_vertex_input = false;
location += VARYING_SLOT_VAR0;
} else {
- assert(!"Location must be on input or output variable");
+ unreachable("Location must be on input or output variable");
}
if (vtn_var->var) {