mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 22:20:09 +01:00
i965/ir: Don't print ARF subnr values twice.
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
This commit is contained in:
parent
5d65d51e78
commit
47784e2346
2 changed files with 0 additions and 8 deletions
|
|
@ -5267,8 +5267,6 @@ fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
|
|||
fprintf(file, "arf%d.%d", inst->dst.nr & 0xf, inst->dst.subnr);
|
||||
break;
|
||||
}
|
||||
if (inst->dst.subnr)
|
||||
fprintf(file, "+%d", inst->dst.subnr);
|
||||
break;
|
||||
case IMM:
|
||||
unreachable("not reached");
|
||||
|
|
@ -5356,8 +5354,6 @@ fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
|
|||
fprintf(file, "arf%d.%d", inst->src[i].nr & 0xf, inst->src[i].subnr);
|
||||
break;
|
||||
}
|
||||
if (inst->src[i].subnr)
|
||||
fprintf(file, "+%d", inst->src[i].subnr);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1451,8 +1451,6 @@ vec4_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
|
|||
fprintf(file, "arf%d.%d", inst->dst.nr & 0xf, inst->dst.subnr);
|
||||
break;
|
||||
}
|
||||
if (inst->dst.subnr)
|
||||
fprintf(file, "+%d", inst->dst.subnr);
|
||||
break;
|
||||
case BAD_FILE:
|
||||
fprintf(file, "(null)");
|
||||
|
|
@ -1544,8 +1542,6 @@ vec4_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
|
|||
fprintf(file, "arf%d.%d", inst->src[i].nr & 0xf, inst->src[i].subnr);
|
||||
break;
|
||||
}
|
||||
if (inst->src[i].subnr)
|
||||
fprintf(file, "+%d", inst->src[i].subnr);
|
||||
break;
|
||||
case BAD_FILE:
|
||||
fprintf(file, "(null)");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue