From 11bfee4c3a9f285f4cd5467dac1af5f7f0dfa307 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 9 Apr 2015 13:45:18 -0600 Subject: [PATCH] tgsi: also dump label for TGSI_OPCODE_BGNSUB opcode MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit So we can see the label associated with subroutines. Reviewed-by: José Fonseca --- src/gallium/auxiliary/tgsi/tgsi_dump.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/auxiliary/tgsi/tgsi_dump.c b/src/gallium/auxiliary/tgsi/tgsi_dump.c index 7ae4049..13d6769 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; -- 2.7.4