diff options
author | Jason Ekstrand <[email protected]> | 2016-12-09 22:31:26 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-01-06 16:44:28 -0800 |
commit | 62332d139c8f6deb7fd8b72a48b34b4b652df7c1 (patch) | |
tree | c2591da7fb73d889ffa8d660002d3a541ec88c89 /src/compiler/nir/nir.h | |
parent | 830dca74fe888cc6cc2d27f99a6c2488d69fc1c0 (diff) |
nir: Add a local variable-based copy propagation pass
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir.h')
-rw-r--r-- | src/compiler/nir/nir.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index 0596d31b903..d17924c2aac 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -2549,6 +2549,8 @@ bool nir_opt_global_to_local(nir_shader *shader); bool nir_copy_prop(nir_shader *shader); +bool nir_opt_copy_prop_vars(nir_shader *shader); + bool nir_opt_cse(nir_shader *shader); bool nir_opt_dce(nir_shader *shader); |