From: Marek Olšák Date: Thu, 30 Mar 2017 15:21:47 +0000 (+0200) Subject: radeonsi: fix an unused-variable warning in a release build X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=83d3e6fbff61f817f35820bfd4066a92ff104115;p=mesa.git radeonsi: fix an unused-variable warning in a release build --- 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;