mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-16 02:50:19 +01:00
vc4: Fix the no-copy-propagating-from-TLB_COLOR_READ check.
Our MOV's dst obviously won't be the TLB_COLOR_READ's def, because we're ssa.
This commit is contained in:
parent
1d04432677
commit
3093bfacf0
1 changed files with 1 additions and 1 deletions
|
|
@ -89,7 +89,7 @@ qir_opt_copy_propagation(struct vc4_compile *c)
|
|||
inst->dst.file == QFILE_TEMP &&
|
||||
(inst->src[0].file != QFILE_TEMP ||
|
||||
(defs[inst->src[0].index]->op != QOP_TEX_RESULT &&
|
||||
defs[inst->dst.index]->op != QOP_TLB_COLOR_READ))) {
|
||||
defs[inst->src[0].index]->op != QOP_TLB_COLOR_READ))) {
|
||||
movs[inst->dst.index] = inst->src[0];
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue