diff options
author | Eric Anholt <[email protected]> | 2012-04-10 12:01:50 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-04-19 17:44:54 -0700 |
commit | 080b125c64b48447a515b1a169f779e62b3de13d (patch) | |
tree | 7b7f1725314809963d2438c49935abec879861de /src/mesa/drivers/dri/i965/Makefile.sources | |
parent | 8890c759513597903997f519c69e9db30790b6f4 (diff) |
i965: Add basic block generator.
This takes the fs_inst list generated by the visitor, and generates a
list of basic blocks with edges between them. This is a building
block for data-flow analysis.
Diffstat (limited to 'src/mesa/drivers/dri/i965/Makefile.sources')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.sources b/src/mesa/drivers/dri/i965/Makefile.sources index 750be513055..74213516210 100644 --- a/src/mesa/drivers/dri/i965/Makefile.sources +++ b/src/mesa/drivers/dri/i965/Makefile.sources @@ -114,6 +114,7 @@ i965_C_FILES := \ i965_CXX_FILES := \ brw_cubemap_normalize.cpp \ brw_fs.cpp \ + brw_fs_cfg.cpp \ brw_fs_emit.cpp \ brw_fs_visitor.cpp \ brw_fs_channel_expressions.cpp \ |