program: Clean up after condition code removal.

This commit is contained in:
Matt Turner
2016-03-02 11:01:33 -08:00
parent 961ead6746
commit 0d047d10f1

View File

@@ -650,11 +650,9 @@ _mesa_execute_program(struct gl_context * ctx,
program->Instructions[inst->BranchTarget].Opcode
== OPCODE_ENDIF);
/* eval condition */
if (inst->SrcReg[0].File != PROGRAM_UNDEFINED) {
GLfloat a[4];
fetch_vector1(&inst->SrcReg[0], machine, a);
cond = (a[0] != 0.0F);
}
GLfloat a[4];
fetch_vector1(&inst->SrcReg[0], machine, a);
cond = (a[0] != 0.0F);
if (DEBUG_PROG) {
printf("IF: %d\n", cond);
}