mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 08:50:13 +01:00
aco: fix printing dpp8
Reviewed-by: Rhys Perry <pendingchaos02@gmail.com> Reviewed-by: Daniel Schürmann <daniel@schuermann.dev> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27118>
This commit is contained in:
parent
c69650a95e
commit
bc57f14c2d
1 changed files with 1 additions and 1 deletions
|
|
@ -713,7 +713,7 @@ print_instr_format_specific(enum amd_gfx_level gfx_level, const Instruction* ins
|
|||
const DPP8_instruction& dpp = instr->dpp8();
|
||||
fprintf(output, " dpp8:[");
|
||||
for (unsigned i = 0; i < 8; i++)
|
||||
fprintf(output, "%s%u", i ? "," : "", (dpp.lane_sel >> (i * 3)) & 0x8);
|
||||
fprintf(output, "%s%u", i ? "," : "", (dpp.lane_sel >> (i * 3)) & 0x7);
|
||||
fprintf(output, "]");
|
||||
if (dpp.fetch_inactive)
|
||||
fprintf(output, " fi");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue