diff options
author | Scott D Phillips <[email protected]> | 2018-03-15 12:53:05 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2018-05-27 19:24:33 -0700 |
commit | 4714784daeb4df97fa82cfcf8f566661cc4ff4a4 (patch) | |
tree | d17453772751e10221f4787d90e314fae356bad9 /src/intel/Makefile.sources | |
parent | 1aec4a07d45164fdb9ba4bc97f330a0e217e3bef (diff) |
anv: move canonical_address calculation into a separate function
A later patch will make use of this in other places. Also, remove
dependency on undefined behavior of left-shifting a signed value.
v2: - move function into a separate header (Chris)
v3: (by Ken) Add new header to the various build systems.
Reviewed-by: Jordan Justen <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/intel/Makefile.sources')
-rw-r--r-- | src/intel/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/Makefile.sources b/src/intel/Makefile.sources index 1adf6f990c6..f22e727553f 100644 --- a/src/intel/Makefile.sources +++ b/src/intel/Makefile.sources @@ -17,6 +17,7 @@ COMMON_FILES = \ common/gen_disasm.c \ common/gen_disasm.h \ common/gen_defines.h \ + common/gen_gem.h \ common/gen_l3_config.c \ common/gen_l3_config.h \ common/gen_urb_config.c \ |