diff options
author | Matt Turner <[email protected]> | 2020-02-27 16:46:52 -0800 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-03-09 04:44:11 +0000 |
commit | 3d0821a21676304822d3364e7ba1c064ca523825 (patch) | |
tree | c397061d38f979f8bf478213d3476e5872b081eb /src/intel/compiler/brw_ir_vec4.h | |
parent | d8f3d0a3a85244450d43da44cb8eed2389969b47 (diff) |
intel/vec4: Make implied_mrf_writes() a vec4_instruction method
Same as commit c20dc9b8363b (intel/fs: Make implied_mrf_writes() an
fs_inst method.)
Reviewed-by: Ian Romanick <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4093>
Diffstat (limited to 'src/intel/compiler/brw_ir_vec4.h')
-rw-r--r-- | src/intel/compiler/brw_ir_vec4.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/compiler/brw_ir_vec4.h b/src/intel/compiler/brw_ir_vec4.h index 65b1e4f3b53..f2361133c16 100644 --- a/src/intel/compiler/brw_ir_vec4.h +++ b/src/intel/compiler/brw_ir_vec4.h @@ -295,6 +295,7 @@ public: bool can_do_writemask(const struct gen_device_info *devinfo); bool can_change_types() const; bool has_source_and_destination_hazard() const; + unsigned implied_mrf_writes() const; bool is_align1_partial_write() { |