diff options
author | Eric Anholt <[email protected]> | 2016-03-10 12:53:57 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2016-07-12 17:41:59 -0700 |
commit | 89918c1e74e454af119e7ae23f3ed66fc26abc4b (patch) | |
tree | 478573a747b23657f6c597e90930be5b3d54da9b /src/gallium/drivers/vc4/Makefile.sources | |
parent | f2eb8e30529780ef7f69f8f5a74707feaa96834c (diff) |
vc4: Implement live intervals using a CFG.
Right now our CFG is always a trivial single basic block, but that will
change when enable loops.
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 612a0a402a0..76e46f54089 100644 --- a/src/gallium/drivers/vc4/Makefile.sources +++ b/src/gallium/drivers/vc4/Makefile.sources @@ -31,6 +31,7 @@ C_SOURCES := \ vc4_opt_vpm.c \ vc4_program.c \ vc4_qir.c \ + vc4_qir_live_variables.c \ vc4_qir_lower_uniforms.c \ vc4_qir_schedule.c \ vc4_qir_validate.c \ |