mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
radeonsi: fix/silence unused variable warnings in optimized builds
I'm leaving num_out_sgpr around since it's not in a fast path, and besides the compiler should be able to optimize it away easily. The alternative with #if/#endif would be extremely ugly. Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
parent
b46a9c570f
commit
b21912e2e9
2 changed files with 3 additions and 3 deletions
|
|
@ -98,7 +98,6 @@ static void si_dma_copy_tile(struct si_context *ctx,
|
|||
struct r600_texture *rsrc = (struct r600_texture*)src;
|
||||
struct r600_texture *rdst = (struct r600_texture*)dst;
|
||||
unsigned dst_mode = rdst->surface.level[dst_level].mode;
|
||||
unsigned src_mode = rsrc->surface.level[src_level].mode;
|
||||
bool detile = dst_mode == RADEON_SURF_MODE_LINEAR_ALIGNED;
|
||||
struct r600_texture *rlinear = detile ? rdst : rsrc;
|
||||
struct r600_texture *rtiled = detile ? rsrc : rdst;
|
||||
|
|
@ -114,7 +113,7 @@ static void si_dma_copy_tile(struct si_context *ctx,
|
|||
uint64_t base, addr;
|
||||
unsigned pipe_config;
|
||||
|
||||
assert(dst_mode != src_mode);
|
||||
assert(dst_mode != rsrc->surface.level[src_level].mode);
|
||||
|
||||
sub_cmd = SI_DMA_COPY_TILED;
|
||||
lbpp = util_logbase2(bpp);
|
||||
|
|
|
|||
|
|
@ -6872,7 +6872,8 @@ static void si_build_wrapper_function(struct si_shader_context *ctx,
|
|||
LLVMValueRef out[48];
|
||||
LLVMTypeRef function_type;
|
||||
unsigned num_params;
|
||||
unsigned num_out_sgpr, num_out;
|
||||
unsigned num_out;
|
||||
MAYBE_UNUSED unsigned num_out_sgpr; /* used in debug checks */
|
||||
unsigned num_sgprs, num_vgprs;
|
||||
unsigned last_sgpr_param;
|
||||
unsigned gprs;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue