mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-17 08:10:33 +01:00
brw/print: Don't print extra space at the end
Reviewed-by: Caleb Callaway <caleb.callaway@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39597>
This commit is contained in:
parent
2bcd7e0fcd
commit
06251fcc24
1 changed files with 8 additions and 10 deletions
|
|
@ -648,30 +648,28 @@ brw_print_instruction(const brw_shader &s, const brw_inst *inst, FILE *file, con
|
|||
fprintf(file, ", residency");
|
||||
}
|
||||
|
||||
fprintf(file, " ");
|
||||
|
||||
if (inst->force_writemask_all)
|
||||
fprintf(file, "NoMask ");
|
||||
fprintf(file, " NoMask");
|
||||
|
||||
if (inst->exec_size != s.dispatch_width)
|
||||
fprintf(file, "group%d ", inst->group);
|
||||
fprintf(file, " group%d", inst->group);
|
||||
|
||||
if (inst->has_no_mask_send_params)
|
||||
fprintf(file, "NoMaskParams ");
|
||||
fprintf(file, " NoMaskParams");
|
||||
|
||||
if (send && send->desc)
|
||||
fprintf(file, "Desc 0x%08x ", send->desc);
|
||||
fprintf(file, " Desc 0x%08x", send->desc);
|
||||
|
||||
if (send && send->ex_desc)
|
||||
fprintf(file, "ExDesc 0x%08x ", send->ex_desc);
|
||||
fprintf(file, " ExDesc 0x%08x", send->ex_desc);
|
||||
|
||||
if (send && send->ex_desc_imm)
|
||||
fprintf(file, "ExDescImmInst 0x%08x ", send->offset);
|
||||
fprintf(file, " ExDescImmInst 0x%08x", send->offset);
|
||||
|
||||
if (inst->sched.regdist || inst->sched.mode) {
|
||||
fprintf(file, "{ ");
|
||||
fprintf(file, " { ");
|
||||
brw_print_swsb(file, s.devinfo, inst->sched);
|
||||
fprintf(file, " } ");
|
||||
fprintf(file, " }");
|
||||
}
|
||||
|
||||
fprintf(file, "\n");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue