mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
radv: cleanup printing SGPRS dumped from the trap handler
It's more readable like that. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32056>
This commit is contained in:
parent
ee74b090db
commit
0cc21d0601
1 changed files with 1 additions and 1 deletions
|
|
@ -1049,7 +1049,7 @@ radv_dump_shader_regs(const struct radv_trap_handler_layout *layout, FILE *f)
|
|||
|
||||
fprintf(f, "\nSGPRS:\n");
|
||||
for (uint32_t i = 0; i < MAX_SGPRS; i += 4) {
|
||||
fprintf(f, "s[%d-%d]={0x%08x, 0x%08x, 0x%08x, 0x%08x}\n", i, i + 3, layout->sgprs[i], layout->sgprs[i + 1],
|
||||
fprintf(f, "s[%d-%d] = { %08x, %08x, %08x, %08x }\n", i, i + 3, layout->sgprs[i], layout->sgprs[i + 1],
|
||||
layout->sgprs[i + 2], layout->sgprs[i + 3]);
|
||||
}
|
||||
fprintf(f, "\n\n");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue