diff options
author | Matt Turner <[email protected]> | 2017-06-22 12:13:25 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2017-07-20 16:56:49 -0700 |
commit | d4c9d6a3b2cef577454d9c911fc96d5f678d9955 (patch) | |
tree | 46a453be7aaa514f1605770d1f7b52d7c1bb9a2c /src/compiler/Makefile.sources | |
parent | ba2fbbf1c0dacfad45ad59b32de6297239c0f88d (diff) |
nir: Add pass to optimize intrinsics
Specifically, constant fold intrinsics from ARB_shader_group_vote, but I
suspect it'll be useful for other things in the future.
Reviewed-by: Kenneth Graunke <[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 785782b54d1..c3a5454e06b 100644 --- a/src/compiler/Makefile.sources +++ b/src/compiler/Makefile.sources @@ -254,6 +254,7 @@ NIR_FILES = \ nir/nir_opt_gcm.c \ nir/nir_opt_global_to_local.c \ nir/nir_opt_if.c \ + nir/nir_opt_intrinsics.c \ nir/nir_opt_loop_unroll.c \ nir/nir_opt_move_comparisons.c \ nir/nir_opt_peephole_select.c \ |