diff options
author | Kenneth Graunke <[email protected]> | 2010-11-25 01:09:26 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2010-12-01 11:52:43 -0800 |
commit | 940df10100d740ef27fa39026fd51c3199ed3d62 (patch) | |
tree | e98326e594fb6dc9fcf7feef37e769e08ac61d1e /src/glsl/Makefile | |
parent | 9a1d063c6d679c2155f5eb80f1cb94368d36bf2c (diff) |
glsl: Add a lowering pass to move discards out of if-statements.
This should allow lower_if_to_cond_assign to work in the presence of
discards, fixing bug #31690 and likely #31983.
NOTE: This is a candidate for the 7.9 branch.
Diffstat (limited to 'src/glsl/Makefile')
-rw-r--r-- | src/glsl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/Makefile b/src/glsl/Makefile index 83ecb7f9c0d..2674c6ec485 100644 --- a/src/glsl/Makefile +++ b/src/glsl/Makefile @@ -52,6 +52,7 @@ CXX_SOURCES = \ loop_analysis.cpp \ loop_controls.cpp \ loop_unroll.cpp \ + lower_discard.cpp \ lower_if_to_cond_assign.cpp \ lower_instructions.cpp \ lower_jumps.cpp \ |