vc4: Fix a pasteo in scheduling condition flag usage.

Noticed by code inspection.  This hasn't been too big of a deal, because
our cond usages all start out as adder ops, either MOVs or the FTOI for Z
writes.  MOVs *can* get converted to mul ops during scheduling, but
apparently we hadn't hit this.
This commit is contained in:
Eric Anholt 2016-07-02 15:08:27 -07:00
parent eaa53f80d9
commit 44df374a9c
1 changed files with 1 additions and 1 deletions

View File

@ -404,7 +404,7 @@ calculate_deps(struct schedule_state *state, struct schedule_node *n)
}
process_cond_deps(state, n, QPU_GET_FIELD(inst, QPU_COND_ADD));
process_cond_deps(state, n, QPU_GET_FIELD(inst, QPU_COND_ADD));
process_cond_deps(state, n, QPU_GET_FIELD(inst, QPU_COND_MUL));
if (inst & QPU_SF)
add_write_dep(state, &state->last_sf, n);
}