diff options
author | Jason Ekstrand <[email protected]> | 2017-12-05 22:31:02 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-12-11 22:28:34 -0800 |
commit | bb1e6ff161c9a438243392ca2cbebac781293658 (patch) | |
tree | 550b04c7a8ff34e4fc4eaa2304422829d23cb512 /src/compiler/Makefile.sources | |
parent | 2c84b49ddff2c03a9a1f2d1e132d4002fd7c070b (diff) |
spirv: Add a prepass to set types on vtn_values
This autogenerated pass will automatically find and set the type field
on all vtn_values. This way we always have the type and can use it for
validation and other checks.
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/compiler/Makefile.sources')
-rw-r--r-- | src/compiler/Makefile.sources | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/compiler/Makefile.sources b/src/compiler/Makefile.sources index 588f96e7eff..d3f746f5f94 100644 --- a/src/compiler/Makefile.sources +++ b/src/compiler/Makefile.sources @@ -290,7 +290,8 @@ NIR_FILES = \ nir/nir_worklist.h SPIRV_GENERATED_FILES = \ - spirv/spirv_info.c + spirv/spirv_info.c \ + spirv/vtn_gather_types.c SPIRV_FILES = \ spirv/GLSL.std.450.h \ |