radeonsi: remove dead variable postponed_kill

Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7031>
This commit is contained in:
Marek Olšák 2020-09-19 18:35:42 -04:00 committed by Marge Bot
parent d5575ca7a1
commit bad7b38aa1
2 changed files with 0 additions and 4 deletions

View File

@ -186,7 +186,6 @@ struct si_shader_context {
LLVMValueRef gs_generated_prims[4];
LLVMValueRef gs_ngg_emit;
LLVMValueRef gs_ngg_scratch;
LLVMValueRef postponed_kill;
LLVMValueRef return_value;
};

View File

@ -503,9 +503,6 @@ static void si_llvm_return_fs_outputs(struct ac_shader_abi *abi, unsigned max_ou
LLVMValueRef depth = NULL, stencil = NULL, samplemask = NULL;
LLVMValueRef ret;
if (ctx->postponed_kill)
ac_build_kill_if_false(&ctx->ac, LLVMBuildLoad(builder, ctx->postponed_kill, ""));
/* Read the output values. */
for (i = 0; i < info->num_outputs; i++) {
unsigned semantic = info->output_semantic[i];