From: Dave Airlie Date: Tue, 5 May 2020 06:03:34 +0000 (+1000) Subject: llvmpipo/nir: free compute shader NIR X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=870b6a60509e2dd547dc75fee9290224ad306779;p=mesa.git llvmpipo/nir: free compute shader NIR I forgot this in the last round. Fixes: 18f896e55d96 (llvmpipe: add initial nir support) Reviewed-by: Roland Scheidegger Part-of: --- diff --git a/src/gallium/drivers/llvmpipe/lp_state_cs.c b/src/gallium/drivers/llvmpipe/lp_state_cs.c index b57e1068a06..ff767a2a860 100644 --- a/src/gallium/drivers/llvmpipe/lp_state_cs.c +++ b/src/gallium/drivers/llvmpipe/lp_state_cs.c @@ -523,6 +523,8 @@ llvmpipe_delete_compute_state(struct pipe_context *pipe, llvmpipe_remove_cs_shader_variant(llvmpipe, li->base); li = next; } + if (shader->base.ir.nir) + ralloc_free(shader->base.ir.nir); tgsi_free_tokens(shader->base.tokens); FREE(shader); }