diff options
author | Jason Ekstrand <[email protected]> | 2014-10-22 11:22:53 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-01-15 07:18:59 -0800 |
commit | 2943522d80393d7996f3aeec173df399d8bd9bbc (patch) | |
tree | 675902d02826ea5e656f21c390db92f3856b2738 /src/glsl/Makefile.sources | |
parent | ff0a9fcf332ce319fae1eb53f3e5d863d0289cbf (diff) |
nir: Add a naieve from-SSA pass
This pass is kind of stupidly implemented but it should be enough to get us
up and going. We probably want something better that doesn't generate all
of the redundant moves eventually. However, the i965 backend should be
able to handle the movs, so I'm not too worried about it in the short term.
Diffstat (limited to 'src/glsl/Makefile.sources')
-rw-r--r-- | src/glsl/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/Makefile.sources b/src/glsl/Makefile.sources index eb390fb14d4..20bf272569c 100644 --- a/src/glsl/Makefile.sources +++ b/src/glsl/Makefile.sources @@ -17,6 +17,7 @@ NIR_FILES = \ $(GLSL_SRCDIR)/nir/nir.c \ $(GLSL_SRCDIR)/nir/nir.h \ $(GLSL_SRCDIR)/nir/nir_dominance.c \ + $(GLSL_SRCDIR)/nir/nir_from_ssa.c \ $(GLSL_SRCDIR)/nir/nir_intrinsics.c \ $(GLSL_SRCDIR)/nir/nir_intrinsics.h \ $(GLSL_SRCDIR)/nir/nir_lower_atomics.c \ |