diff options
author | Mauro Rossi <issor.oruam@gmail.com> | 2018-01-12 15:47:34 +0100 |
---|---|---|
committer | Timothy Arceri <tarceri@itsqueeze.com> | 2018-01-13 18:13:07 +1100 |
commit | 4d61eb80187cd8e5984eed94f2ae3c7d6c3b3aa0 (patch) | |
tree | 1d5b08a209c72a8fa3cdc9859dedc4fe74e6652f | |
parent | f0d74ecce8d3353ed2696cb4b1e707fd6ddf0a40 (diff) |
ac: fix build error in si_shader
assert() is replaced by unreachable(), to avoid following building error:
external/mesa/src/gallium/drivers/radeonsi/si_shader.c:1967:1:
error: control may reach end of non-void function [-Werror,-Wreturn-type]
}
^
1 error generated.
Fixes: c797cd6 ("ac: add load_patch_vertices_in() to the abi")
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
-rw-r--r-- | src/gallium/drivers/radeonsi/si_shader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_shader.c b/src/gallium/drivers/radeonsi/si_shader.c index dd635ae203..35f82d8d63 100644 --- a/src/gallium/drivers/radeonsi/si_shader.c +++ b/src/gallium/drivers/radeonsi/si_shader.c @@ -1963,7 +1963,7 @@ static LLVMValueRef si_load_patch_vertices_in(struct ac_shader_abi *abi) else if (ctx->type == PIPE_SHADER_TESS_EVAL) return get_num_tcs_out_vertices(ctx); else - assert(!"invalid shader stage for TGSI_SEMANTIC_VERTICESIN"); + unreachable("invalid shader stage for TGSI_SEMANTIC_VERTICESIN"); } void si_load_system_value(struct si_shader_context *ctx, |