mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 15:20:10 +01:00
nvc0/ir: use large issue delay after RET, too
This commit is contained in:
parent
b23ec3f8ba
commit
f07c46a4f4
1 changed files with 1 additions and 1 deletions
|
|
@ -2559,7 +2559,7 @@ private:
|
|||
void
|
||||
SchedDataCalculator::setDelay(Instruction *insn, int delay, Instruction *next)
|
||||
{
|
||||
if (insn->op == OP_EXIT)
|
||||
if (insn->op == OP_EXIT || insn->op == OP_RET)
|
||||
delay = MAX2(delay, 14);
|
||||
|
||||
if (insn->op == OP_TEXBAR) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue