mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 17:30:20 +01:00
i965/fs: Print mlen in dump_instructions() output.
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
15a12795c6
commit
c820407ef0
1 changed files with 3 additions and 0 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue