From 47c0820dc7bdddec29145e50eb6ee7f4e3e71b7b Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Mon, 3 Apr 2023 10:46:03 +0200 Subject: [PATCH] radv: remove dead code in radv_pipeline_get_nir() We either import the NIR or the assembly, so this was never reached. Signed-off-by: Samuel Pitoiset Part-of: --- src/amd/vulkan/radv_pipeline.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/amd/vulkan/radv_pipeline.c b/src/amd/vulkan/radv_pipeline.c index a75c9f2..81126c8 100644 --- a/src/amd/vulkan/radv_pipeline.c +++ b/src/amd/vulkan/radv_pipeline.c @@ -2765,10 +2765,6 @@ radv_pipeline_get_nir(struct radv_device *device, struct radv_graphics_pipeline if (!stages[s].entrypoint) continue; - /* Do not try to get the NIR when we already have the assembly. */ - if (pipeline->base.shaders[s]) - continue; - int64_t stage_start = os_time_get_nano(); assert(retain_shaders || pipeline->base.shaders[s] == NULL); -- 2.7.4