r600g: add error print for no literals for r700s as well

This commit is contained in:
Dave Airlie
2010-09-06 10:38:29 +10:00
parent 2caf6f5e84
commit 35e01b79cb
+3
View File
@@ -66,6 +66,9 @@ int r700_bc_alu_build(struct r600_bc *bc, struct r600_bc_alu *alu, unsigned id)
S_SQ_ALU_WORD1_OP2_UPDATE_PRED(alu->predicate);
}
if (alu->last) {
if (alu->nliteral && !alu->literal_added) {
R600_ERR("Bug in ALU processing for instruction 0x%08x, literal not added correctly\n", alu->inst);
}
for (i = 0; i < alu->nliteral; i++) {
bc->bytecode[id++] = alu->value[i];
}