diff options
author | Eric Anholt <[email protected]> | 2010-07-26 22:50:29 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-07-27 09:43:52 -0700 |
commit | 832aad989e3d319a8aaac046aa49df25da134d82 (patch) | |
tree | a0646404b655dbaac4ef112074ad985d02b4dea7 /src/glsl/Makefile | |
parent | 5533c6e38030ff6e26375a1a4e4bfa9ab2204d4c (diff) |
glsl2: Add optimization pass for algebraic simplifications.
This cleans up the assembly output of almost all the non-logic tests
glsl-algebraic-*. glsl-algebraic-pow-two needs love (basically,
flattening to a temporary and squaring it).
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 462d49e8840..4c85af8906d 100644 --- a/src/glsl/Makefile +++ b/src/glsl/Makefile @@ -30,6 +30,7 @@ CXX_SOURCES = \ glsl_parser_extras.cpp \ glsl_types.cpp \ hir_field_selection.cpp \ + ir_algebraic.cpp \ ir_basic_block.cpp \ ir_clone.cpp \ ir_constant_expression.cpp \ |