print conditional writemask, if enabled
diff --git a/src/mesa/shader/prog_print.c b/src/mesa/shader/prog_print.c
index 4519f0c..d290ce0 100644
--- a/src/mesa/shader/prog_print.c
+++ b/src/mesa/shader/prog_print.c
@@ -388,6 +388,12 @@
dstReg->Index, mode, prog),
writemask_string(dstReg->WriteMask));
+ if (dstReg->CondMask != COND_TR) {
+ _mesa_printf(" (%s.%s)",
+ condcode_string(dstReg->CondMask),
+ _mesa_swizzle_string(dstReg->CondSwizzle, GL_FALSE, GL_FALSE));
+ }
+
#if 0
_mesa_printf("%s[%d]%s",
file_string((enum register_file) dstReg->File, mode),