i965/disasm: Don't disassemble the URB complete field on Broadwell.

It doesn't exist, so attempting to read it will trigger generation
assertions in the brw_inst API.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Kenneth Graunke 2014-07-17 15:55:05 -07:00
parent 662f1ccc24
commit caf8c07dd4
1 changed files with 4 additions and 2 deletions

View File

@ -1410,8 +1410,10 @@ brw_disassemble_inst(FILE *file, struct brw_context *brw, brw_inst *inst,
err |= control(file, "urb used", urb_used,
brw_inst_urb_used(brw, inst), &space);
}
err |= control(file, "urb complete", urb_complete,
brw_inst_urb_complete(brw, inst), &space);
if (brw->gen < 8) {
err |= control(file, "urb complete", urb_complete,
brw_inst_urb_complete(brw, inst), &space);
}
break;
case BRW_SFID_THREAD_SPAWNER:
break;