[Mesa-dev] [PATCH 2/3] nir: Add a foreach_register helper
Jason Ekstrand
jason at jlekstrand.net
Wed Dec 14 18:38:39 UTC 2016
---
src/compiler/nir/nir.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h
index f1c99ce..0ad5ffb 100644
--- a/src/compiler/nir/nir.h
+++ b/src/compiler/nir/nir.h
@@ -373,6 +373,9 @@ typedef struct nir_register {
struct list_head if_uses;
} nir_register;
+#define nir_foreach_register(var, reg_list) \
+ foreach_list_typed(nir_register, reg, node, reg_list)
+
typedef enum {
nir_instr_type_alu,
nir_instr_type_call,
--
2.5.0.400.gff86faf
More information about the mesa-dev
mailing list