From: Kenneth Graunke Date: Sun, 26 Jun 2016 07:39:32 +0000 (-0700) Subject: i965: Print EOT in fs_visitor::dump_instruction(). X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=034bd2532775a1f7da5379a523621458e273f619;p=mesa.git i965: Print EOT in fs_visitor::dump_instruction(). This was useful when debugging the previous commit's issue. Signed-off-by: Kenneth Graunke Reviewed-by: Iago Toral Quiroga --- diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index a929a203db0..2f473ccda93 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -5324,6 +5324,10 @@ fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file) fprintf(file, "(mlen: %d) ", inst->mlen); } + if (inst->eot) { + fprintf(file, "(EOT) "); + } + switch (inst->dst.file) { case VGRF: fprintf(file, "vgrf%d", inst->dst.nr);