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:
Connor Abbott 2020-08-17 14:11:39 +02:00 committed by Marge Bot
parent 165009bc70
commit 0acc394486

View file

@ -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]);