mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 07:10:15 +01:00
freedreno/afuc: Fix printing preemptleave on a5xx
This opcode is actually used on a5xx, but I'm not sure what it's for. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6368>
This commit is contained in:
parent
165009bc70
commit
0acc394486
1 changed files with 3 additions and 2 deletions
|
|
@ -667,9 +667,10 @@ static void disasm(uint32_t *buf, int sizedwords)
|
|||
case OPC_PREEMPTLEAVE6:
|
||||
if (gpuver < 6) {
|
||||
printf("[%08x] ; op38", instrs[i]);
|
||||
} else {
|
||||
printf("preemptleave #");
|
||||
printlbl("%s", label_name(instr->call.uoff, true));
|
||||
}
|
||||
printf("preemptleave #");
|
||||
printlbl("%s", label_name(instr->call.uoff, true));
|
||||
break;
|
||||
default:
|
||||
printerr("[%08x]", instrs[i]);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue