anv: Use ASSERTED for results that are only used in asserts.
This gets rid of unused variable warnings for these results. Signed-off-by: Timur Kristóf <timur.kristof@gmail.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9634>
This commit is contained in:
@@ -113,7 +113,7 @@ anv_measure_init(struct anv_cmd_buffer *cmd_buffer)
|
|||||||
VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
||||||
|
|
||||||
memset(measure, 0, batch_bytes);
|
memset(measure, 0, batch_bytes);
|
||||||
VkResult result =
|
ASSERTED VkResult result =
|
||||||
anv_device_alloc_bo(device, "measure data",
|
anv_device_alloc_bo(device, "measure data",
|
||||||
config->batch_size * sizeof(uint64_t),
|
config->batch_size * sizeof(uint64_t),
|
||||||
ANV_BO_ALLOC_MAPPED,
|
ANV_BO_ALLOC_MAPPED,
|
||||||
@@ -326,7 +326,7 @@ anv_measure_reset(struct anv_cmd_buffer *cmd_buffer)
|
|||||||
list_inithead(&measure->base.link);
|
list_inithead(&measure->base.link);
|
||||||
|
|
||||||
anv_device_release_bo(device, measure->bo);
|
anv_device_release_bo(device, measure->bo);
|
||||||
VkResult result =
|
ASSERTED VkResult result =
|
||||||
anv_device_alloc_bo(device, "measure data",
|
anv_device_alloc_bo(device, "measure data",
|
||||||
config->batch_size * sizeof(uint64_t),
|
config->batch_size * sizeof(uint64_t),
|
||||||
ANV_BO_ALLOC_MAPPED,
|
ANV_BO_ALLOC_MAPPED,
|
||||||
|
@@ -938,7 +938,7 @@ anv_queue_submit_add_in_semaphores(struct anv_queue_submit *submit,
|
|||||||
const uint64_t *in_values,
|
const uint64_t *in_values,
|
||||||
uint32_t num_in_semaphores)
|
uint32_t num_in_semaphores)
|
||||||
{
|
{
|
||||||
struct anv_physical_device *pdevice = device->physical;
|
ASSERTED struct anv_physical_device *pdevice = device->physical;
|
||||||
VkResult result;
|
VkResult result;
|
||||||
|
|
||||||
for (uint32_t i = 0; i < num_in_semaphores; i++) {
|
for (uint32_t i = 0; i < num_in_semaphores; i++) {
|
||||||
@@ -1035,7 +1035,7 @@ anv_queue_submit_add_out_semaphores(struct anv_queue_submit *submit,
|
|||||||
const uint64_t *out_values,
|
const uint64_t *out_values,
|
||||||
uint32_t num_out_semaphores)
|
uint32_t num_out_semaphores)
|
||||||
{
|
{
|
||||||
struct anv_physical_device *pdevice = device->physical;
|
ASSERTED struct anv_physical_device *pdevice = device->physical;
|
||||||
VkResult result;
|
VkResult result;
|
||||||
|
|
||||||
for (uint32_t i = 0; i < num_out_semaphores; i++) {
|
for (uint32_t i = 0; i < num_out_semaphores; i++) {
|
||||||
|
Reference in New Issue
Block a user