tgsi: print debug messages on failure to codegenerate

This commit is contained in:
Keith Whitwell
2008-02-15 18:54:00 +00:00
parent de5c64e0af
commit 1eaf7b775b
@@ -2356,11 +2356,17 @@ tgsi_emit_sse2_fs(
ok = emit_instruction(
func,
&parse.FullToken.FullInstruction );
if (!ok) {
debug_printf("failed to translate tgsi opcode %d\n",
parse.FullToken.FullInstruction.Instruction.Opcode );
}
break;
case TGSI_TOKEN_TYPE_IMMEDIATE:
/* XXX implement this */
ok = 0;
debug_printf("failed to emit immediate value\n");
break;
default: