intel/compiler: Align human-readable send message info

This fprintf() was added in commit cce3bea2a7 ("i965/disasm: Align send
instruction meta-information with dst.")) to align the human-readable
send message info (e.g. "render MsgDesc: RT write ...") with the
destination register on the previous line.

Two months later we disabled printing the instruction offset in commit
662f1ccc24 ("i965: Disable hex offset printing in disassembly."),
thereby unaligning the human-readable send message info for the next 11
years.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35077>
This commit is contained in:
Matt Turner
2025-05-20 14:18:02 -04:00
committed by Marge Bot
parent 4c4d90ae49
commit 37016468a5
2 changed files with 0 additions and 2 deletions

View File

@@ -2186,7 +2186,6 @@ brw_disassemble_inst(FILE *file, const struct brw_isa_info *isa,
pad(file, 16);
space = 0;
fprintf(file, " ");
err |= control(file, "SFID", brw_sfid, sfid, &space);
string(file, " MsgDesc:");

View File

@@ -1689,7 +1689,6 @@ elk_disassemble_inst(FILE *file, const struct elk_isa_info *isa,
pad(file, 16);
space = 0;
fprintf(file, " ");
err |= control(file, "SFID", devinfo->ver >= 6 ? gfx6_sfid : gfx4_sfid,
sfid, &space);
string(file, " MsgDesc:");