diff options
author | Jason Ekstrand <[email protected]> | 2019-03-06 15:21:51 -0600 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2019-03-12 15:34:06 +0000 |
commit | 5ef2b8f1f2ebcdb4ffe5c98b3f4f48e584cb4b22 (patch) | |
tree | 3cc8ecc991db2d22a4349f19f7d8b1eedea2a052 /src/compiler/Makefile.sources | |
parent | 0f025bbccc236140101bc03ce9fa9d7a5bdb843b (diff) |
nir: Add a pass for lowering IO back to vector when possible
This pass tries to turn scalar and array-of-scalar IO variables into
vector IO variables whenever possible.
Reviewed-by: Connor Abbott <[email protected]>
Cc: "19.0" <[email protected]>
Diffstat (limited to 'src/compiler/Makefile.sources')
-rw-r--r-- | src/compiler/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/Makefile.sources b/src/compiler/Makefile.sources index faa7ea9aba1..7154fd1bc7d 100644 --- a/src/compiler/Makefile.sources +++ b/src/compiler/Makefile.sources @@ -251,6 +251,7 @@ NIR_FILES = \ nir/nir_lower_io_arrays_to_elements.c \ nir/nir_lower_io_to_temporaries.c \ nir/nir_lower_io_to_scalar.c \ + nir/nir_lower_io_to_vector.c \ nir/nir_lower_packing.c \ nir/nir_lower_passthrough_edgeflags.c \ nir/nir_lower_patch_vertices.c \ |