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_opt_dce.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_opt_dce.c')
-rw-r--r-- | src/glsl/nir/nir_opt_dce.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/nir/nir_opt_dce.c b/src/glsl/nir/nir_opt_dce.c index 9778e9ed6a6..3f7d94d8295 100644 --- a/src/glsl/nir/nir_opt_dce.c +++ b/src/glsl/nir/nir_opt_dce.c @@ -116,7 +116,7 @@ init_block_cb(nir_block *block, void *_state) nir_foreach_instr(block, instr) init_instr(instr, worklist); - nir_if *following_if = nir_block_following_if(block); + nir_if *following_if = nir_block_get_following_if(block); if (following_if) { if (following_if->condition.is_ssa && !following_if->condition.ssa->parent_instr->live) |