mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
special case END in _mesa_print_instruction()
This commit is contained in:
parent
f5eea0cc7a
commit
8ed319796f
1 changed files with 3 additions and 0 deletions
|
|
@ -1691,6 +1691,9 @@ _mesa_print_instruction(const struct prog_instruction *inst)
|
|||
print_src_reg(&inst->SrcReg[0]);
|
||||
_mesa_printf(";\n");
|
||||
break;
|
||||
case OPCODE_END:
|
||||
_mesa_printf("END;\n");
|
||||
break;
|
||||
/* XXX may need for other special-case instructions */
|
||||
default:
|
||||
/* typical alu instruction */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue