i965/vec4: Make vec4_visitor::implied_mrf_writes() return zero for sends from GRF.
Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
@@ -287,7 +287,7 @@ vec4_instruction::can_do_source_mods(struct brw_context *brw)
|
||||
int
|
||||
vec4_visitor::implied_mrf_writes(vec4_instruction *inst)
|
||||
{
|
||||
if (inst->mlen == 0)
|
||||
if (inst->mlen == 0 || inst->is_send_from_grf())
|
||||
return 0;
|
||||
|
||||
switch (inst->opcode) {
|
||||
|
||||
Reference in New Issue
Block a user