From c51b0861e4559c13bee0d6fb0da2575b39e50e38 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Mon, 14 Jul 2014 11:15:51 -0700 Subject: [PATCH] i965/cfg: Add a foreach_block_safe macro. Reviewed-by: Topi Pohjolainen --- src/mesa/drivers/dri/i965/brw_cfg.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mesa/drivers/dri/i965/brw_cfg.h b/src/mesa/drivers/dri/i965/brw_cfg.h index f7203e25dad..a5d2df58fa4 100644 --- a/src/mesa/drivers/dri/i965/brw_cfg.h +++ b/src/mesa/drivers/dri/i965/brw_cfg.h @@ -112,6 +112,9 @@ struct cfg_t { #define foreach_block(__block, __cfg) \ foreach_list_typed (bblock_t, __block, link, &(__cfg)->block_list) +#define foreach_block_safe(__block, __cfg) \ + foreach_list_typed_safe (bblock_t, __block, link, &(__cfg)->block_list) + #define foreach_inst_in_block(__type, __inst, __block) \ for (__type *__inst = (__type *)__block->start; \ __inst != __block->end->next; \ -- 2.30.2