diff options
author | Rob Clark <[email protected]> | 2020-05-14 11:52:02 -0700 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-05-19 16:06:17 +0000 |
commit | e4ecfde2dd07494855631865da45a8863372c3ae (patch) | |
tree | c4e8f47d401c438e0460da9ed42e314b26efe44c /src/freedreno/ir3/ir3.h | |
parent | 372e4663011e7388114d798ac1028da5dd72ab92 (diff) |
freedreno/ir3/cp: report progress
Later when we do this pass iteratively, we can drop some of the internal
iteration and just rely on this pass getting run until there is no more
progress.
Signed-off-by: Rob Clark <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5048>
Diffstat (limited to 'src/freedreno/ir3/ir3.h')
-rw-r--r-- | src/freedreno/ir3/ir3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/freedreno/ir3/ir3.h b/src/freedreno/ir3/ir3.h index 78fc96faea3..70ead4e6cc8 100644 --- a/src/freedreno/ir3/ir3.h +++ b/src/freedreno/ir3/ir3.h @@ -1198,7 +1198,7 @@ bool ir3_dce(struct ir3 *ir, struct ir3_shader_variant *so); bool ir3_cf(struct ir3 *ir); /* copy-propagate: */ -void ir3_cp(struct ir3 *ir, struct ir3_shader_variant *so); +bool ir3_cp(struct ir3 *ir, struct ir3_shader_variant *so); /* group neighbors and insert mov's to resolve conflicts: */ void ir3_group(struct ir3 *ir); |