diff --git a/src/intel/compiler/brw_print.cpp b/src/intel/compiler/brw_print.cpp index bf1110964cc..9cc534fc4ac 100644 --- a/src/intel/compiler/brw_print.cpp +++ b/src/intel/compiler/brw_print.cpp @@ -660,6 +660,12 @@ brw_print_instruction(const brw_shader &s, const brw_inst *inst, FILE *file, con if (inst->has_no_mask_send_params) fprintf(file, "NoMaskParams "); + if (is_send && inst->desc) + fprintf(file, "Desc 0x%08x ", inst->desc); + + if (is_send && inst->ex_desc) + fprintf(file, "ExDesc 0x%08x ", inst->ex_desc); + if (inst->sched.regdist || inst->sched.mode) { fprintf(file, "{ "); brw_print_swsb(file, s.devinfo, inst->sched);