diff options
author | Grazvydas Ignotas <[email protected]> | 2016-04-16 04:00:12 +0300 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2016-04-25 12:23:21 +0200 |
commit | cbb0d4ad75e6309932af7995ca80fa5ff5db7c70 (patch) | |
tree | 82a47174ffd75e683e8ab9fe75f5886c59180db5 /src/gallium/drivers/r600 | |
parent | bbeb9ab2f71409aad47485e7a1b8900f6839a481 (diff) |
gallium: fix warnings in release build
Mark variables MAYBE_UNUSED to avoid unused-but-set-variable warnings
in release build.
Signed-off-by: Grazvydas Ignotas <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/compute_memory_pool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/compute_memory_pool.c b/src/gallium/drivers/r600/compute_memory_pool.c index 93e3ffe256f..bcda155c71a 100644 --- a/src/gallium/drivers/r600/compute_memory_pool.c +++ b/src/gallium/drivers/r600/compute_memory_pool.c @@ -489,7 +489,7 @@ void compute_memory_move_item(struct compute_memory_pool *pool, struct r600_context *rctx = (struct r600_context *)pipe; struct pipe_box box; - struct compute_memory_item *prev; + MAYBE_UNUSED struct compute_memory_item *prev; COMPUTE_DBG(pool->screen, "* compute_memory_move_item()\n" " + Moving item %"PRIi64" from %"PRIi64" (%"PRIi64" bytes) to %"PRIu64" (%"PRIu64" bytes)\n", |