From 83d3e6fbff61f817f35820bfd4066a92ff104115 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Thu, 30 Mar 2017 17:21:47 +0200 Subject: [PATCH] radeonsi: fix an unused-variable warning in a release build --- src/gallium/drivers/radeon/r600_texture.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/gallium/drivers/radeon/r600_texture.c b/src/gallium/drivers/radeon/r600_texture.c index 75e8c77cfd2..0daa5ea53e2 100644 --- a/src/gallium/drivers/radeon/r600_texture.c +++ b/src/gallium/drivers/radeon/r600_texture.c @@ -1438,9 +1438,7 @@ static struct pipe_resource *r600_texture_from_handle(struct pipe_screen *screen /* Validate that addrlib arrived at the same surface parameters. */ if (rscreen->chip_class >= GFX9) { - struct gfx9_surf_layout *gfx9 = &surface.u.gfx9; - - assert(metadata.u.gfx9.swizzle_mode == gfx9->surf.swizzle_mode); + assert(metadata.u.gfx9.swizzle_mode == surface.u.gfx9.surf.swizzle_mode); } return &rtex->resource.b.b; -- 2.30.2