diff options
author | Jason Ekstrand <[email protected]> | 2014-12-17 14:49:24 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-01-15 07:20:23 -0800 |
commit | de73d1e17318b9e7ed9d1f84bef56f6cc09bdf82 (patch) | |
tree | 3be213d65f06530a4e96f220e1f57d09a67f55b0 /src/glsl/nir/nir_from_ssa.c | |
parent | cb53aacaa1555b98fa77146492e96a7e3d7631ba (diff) |
nir: Rename nir_block_following_if to nir_block_get_following_if
The new name is a little longer but less confusing.
Reviewed-by: Connor Abbott <[email protected]>
Diffstat (limited to 'src/glsl/nir/nir_from_ssa.c')
-rw-r--r-- | src/glsl/nir/nir_from_ssa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/nir/nir_from_ssa.c b/src/glsl/nir/nir_from_ssa.c index b644eb506a9..ca3314f55de 100644 --- a/src/glsl/nir/nir_from_ssa.c +++ b/src/glsl/nir/nir_from_ssa.c @@ -557,7 +557,7 @@ resolve_registers_block(nir_block *block, void *void_state) } state->instr = NULL; - nir_if *following_if = nir_block_following_if(block); + nir_if *following_if = nir_block_get_following_if(block); if (following_if && following_if->condition.is_ssa) { nir_register *reg = get_register_for_ssa_def(following_if->condition.ssa, state); |