diff options
author | Eric Anholt <[email protected]> | 2014-08-25 00:12:21 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2014-09-04 11:39:51 -0700 |
commit | 55d2a1626219ac041ce05477827b592efa1c7b81 (patch) | |
tree | 8cd77b31a7e725ff3fd34933dfd481246d5955ad /src/gallium/drivers/vc4/Makefile.sources | |
parent | 80b27ca2cd8cd2bb2937baa441c43a396887cc03 (diff) |
vc4: Add a CSE optimization pass.
Debugging a regression in discard support was just too full of duplicate
instructions, so I decided to remove them instead of re-analyzing each of
them as I dumped their outputs in simulation.
Diffstat (limited to 'src/gallium/drivers/vc4/Makefile.sources')
-rw-r--r-- | src/gallium/drivers/vc4/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/vc4/Makefile.sources b/src/gallium/drivers/vc4/Makefile.sources index f8e04e40009..aa4ee6b6866 100644 --- a/src/gallium/drivers/vc4/Makefile.sources +++ b/src/gallium/drivers/vc4/Makefile.sources @@ -7,6 +7,7 @@ C_SOURCES := \ vc4_formats.c \ vc4_opt_algebraic.c \ vc4_opt_copy_propagation.c \ + vc4_opt_cse.c \ vc4_opt_dead_code.c \ vc4_program.c \ vc4_qir.c \ |