aco/ra: don't set affinities for ssa-repair phis

These have no effect anymore.

Reviewed-by: Rhys Perry <pendingchaos02@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12836>
This commit is contained in:
Daniel Schürmann
2021-09-08 22:44:19 +02:00
committed by Marge Bot
parent ae5cbd8f3a
commit a2ffdca26a
@@ -2107,7 +2107,6 @@ handle_live_in(ra_ctx& ctx, Temp val, Block* block)
assert(ctx.assignments[ops[i].id()].assigned);
assert(ops[i].regClass() == new_val.regClass());
phi->operands[i].setFixed(ctx.assignments[ops[i].id()].reg);
ctx.assignments.back().affinity = ops[i].id();
}
block->instructions.insert(block->instructions.begin(), std::move(phi));
}