diff options
author | Bas Nieuwenhuizen <[email protected]> | 2018-01-17 23:23:02 +0100 |
---|---|---|
committer | Bas Nieuwenhuizen <[email protected]> | 2018-01-19 00:38:45 +0100 |
commit | 0f89f9b8eb4b4f40d9359ebc98ed7f92cd889a83 (patch) | |
tree | a6434898a0e756dfa0ca7955e181463a49217990 /src | |
parent | e417ab212b17505aa3bd40d9b57c2c2b27ae75b0 (diff) |
radv: Replace an assert with unreachable.
Otherwise we get uninitialized variable warnings for es_vgpr_comp_cnt.
Reviewed-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/amd/vulkan/radv_shader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_shader.c b/src/amd/vulkan/radv_shader.c index 9819a522d71..3bcaac168ad 100644 --- a/src/amd/vulkan/radv_shader.c +++ b/src/amd/vulkan/radv_shader.c @@ -424,7 +424,7 @@ radv_fill_shader_variant(struct radv_device *device, } else if (es_type == MESA_SHADER_TESS_EVAL) { es_vgpr_comp_cnt = 3; } else { - assert(!"invalid shader ES type"); + unreachable("invalid shader ES type"); } /* If offsets 4, 5 are used, GS_VGPR_COMP_CNT is ignored and |