summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/tgsi/core/tgsi_dump.c
diff options
context:
space:
mode:
authormichal <michal@michal-laptop.(none)>2007-08-07 15:34:11 +0100
committermichal <michal@michal-laptop.(none)>2007-08-07 15:34:46 +0100
commit4a470f63c9c3f5aeef1e10ae42eee24c772f74fc (patch)
treea5a1ee000d1fca4a865beb61f7e7ac2f8bf9ffb7 /src/mesa/pipe/tgsi/core/tgsi_dump.c
parentadf5560ea5f6955425939df7e75ce9d11ea36511 (diff)
Naive implementation of IF/ELSE/ENDIF.
Handle TGSI labels correctly. Enhance MESA opcode info queries.
Diffstat (limited to 'src/mesa/pipe/tgsi/core/tgsi_dump.c')
-rw-r--r--src/mesa/pipe/tgsi/core/tgsi_dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/tgsi/core/tgsi_dump.c b/src/mesa/pipe/tgsi/core/tgsi_dump.c
index 641339c896..f1773ac908 100644
--- a/src/mesa/pipe/tgsi/core/tgsi_dump.c
+++ b/src/mesa/pipe/tgsi/core/tgsi_dump.c
@@ -788,7 +788,7 @@ dump_instruction_short(
switch( inst->Instruction.Opcode ) {
case TGSI_OPCODE_IF:
case TGSI_OPCODE_ELSE:
- TXT( " : " );
+ TXT( " :" );
UID( inst->InstructionExtLabel.Label );
break;
}