From: Kenneth Graunke Date: Wed, 3 Jun 2015 03:40:54 +0000 (-0700) Subject: i965/fs: Print mlen in dump_instructions() output. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c820407ef0aac87546d1a778e169cfa1a915a219;p=mesa.git i965/fs: Print mlen in dump_instructions() output. Signed-off-by: Kenneth Graunke Reviewed-by: Matt Turner --- diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 28a19bd14ec..902f239e3df 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -3650,6 +3650,9 @@ fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file) } fprintf(file, "(%d) ", inst->exec_size); + if (inst->mlen) { + fprintf(file, "(mlen: %d) ", inst->mlen); + } switch (inst->dst.file) { case GRF: