diff options
author | Eric Anholt <[email protected]> | 2014-07-04 10:59:42 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2014-08-08 18:59:47 -0700 |
commit | ec9da314baf11bea57f315346091ae941ac4f662 (patch) | |
tree | e0870edfe9f658bcf6e53a15f7c21b0640dd6b63 /src/gallium/drivers/vc4/Makefile.sources | |
parent | d9d1c14430aaeb5b22aa66b269ba288e3df24103 (diff) |
vc4: Add copy propagation between temps.
We put in a bunch of extra MOVs for program outputs, and this can clean
those up. We should do uniforms, too, though.
v2: Fix missing flagging of progress when we actually optimize. Caught by
Aaron Watry.
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 6977a067bd7..b4e499b7d6c 100644 --- a/src/gallium/drivers/vc4/Makefile.sources +++ b/src/gallium/drivers/vc4/Makefile.sources @@ -5,6 +5,7 @@ C_SOURCES := \ vc4_draw.c \ vc4_emit.c \ vc4_opt_algebraic.c \ + vc4_opt_copy_propagation.c \ vc4_opt_dead_code.c \ vc4_program.c \ vc4_qir.c \ |