From: Matt Turner Date: Thu, 26 May 2016 19:09:33 +0000 (-0700) Subject: i965: Simplify foreach_inst_in_block_safe() macro. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e3d9125b770e830db0c01179f08d4a121c2adaaa;p=mesa.git i965: Simplify foreach_inst_in_block_safe() macro. We know what the end looks like without examining .tail: it's NULL. It's always NULL. --- diff --git a/src/mesa/drivers/dri/i965/brw_cfg.h b/src/mesa/drivers/dri/i965/brw_cfg.h index 5b770aa7af1..1c90eab5eba 100644 --- a/src/mesa/drivers/dri/i965/brw_cfg.h +++ b/src/mesa/drivers/dri/i965/brw_cfg.h @@ -334,9 +334,8 @@ struct cfg_t { #define foreach_inst_in_block_safe(__type, __inst, __block) \ for (__type *__inst = (__type *)__block->instructions.head, \ - *__next = (__type *)__inst->next, \ - *__end = (__type *)__block->instructions.tail; \ - __next != __end; \ + *__next = (__type *)__inst->next; \ + __next != NULL; \ __inst = __next, \ __next = (__type *)__next->next)