diff options
author | Jason Ekstrand <[email protected]> | 2015-01-20 16:30:14 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-01-20 16:53:29 -0800 |
commit | 194f6235b32cd0c54547a3913e463cf691d011d6 (patch) | |
tree | d93c654666139b58961430e80433b8342b88a86d /src/glsl/nir/nir_live_variables.c | |
parent | 169d7e5cb1cce73d39e40717d5f49ac30b626d1b (diff) |
nir: Add a nir_foreach_phi_src helper macro
Reviewed-by: Connor Abbott <cwabbott02gmail.com>
Diffstat (limited to 'src/glsl/nir/nir_live_variables.c')
-rw-r--r-- | src/glsl/nir/nir_live_variables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/nir/nir_live_variables.c b/src/glsl/nir/nir_live_variables.c index f110c5e47ab..7402dc0877e 100644 --- a/src/glsl/nir/nir_live_variables.c +++ b/src/glsl/nir/nir_live_variables.c @@ -147,7 +147,7 @@ propagate_across_edge(nir_block *pred, nir_block *succ, break; nir_phi_instr *phi = nir_instr_as_phi(instr); - foreach_list_typed(nir_phi_src, src, node, &phi->srcs) { + nir_foreach_phi_src(phi, src) { if (src->pred == pred) { set_src_live(&src->src, live); break; |