From: Brian Paul Date: Thu, 9 Apr 2015 19:45:18 +0000 (-0600) Subject: tgsi: also dump label for TGSI_OPCODE_BGNSUB opcode X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=11bfee4c3a9f285f4cd5467dac1af5f7f0dfa307;p=mesa.git tgsi: also dump label for TGSI_OPCODE_BGNSUB opcode So we can see the label associated with subroutines. Reviewed-by: José Fonseca --- diff --git a/src/gallium/auxiliary/tgsi/tgsi_dump.c b/src/gallium/auxiliary/tgsi/tgsi_dump.c index 7ae404993dc..13d67691897 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_dump.c +++ b/src/gallium/auxiliary/tgsi/tgsi_dump.c @@ -606,6 +606,7 @@ iter_instruction( case TGSI_OPCODE_BGNLOOP: case TGSI_OPCODE_ENDLOOP: case TGSI_OPCODE_CAL: + case TGSI_OPCODE_BGNSUB: TXT( " :" ); UID( inst->Label.Label ); break;