Revert "intel/compiler: Silence unused parameter warning in update_inst_scoreboard"

This was a placeholder for the XeHP cross-pipeline synchronization
code, bring it back.

This reverts commit a80e44902f.

Reviewed-by: Francisco Jerez <currojerez@riseup.net>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10000>
This commit is contained in:
Jordan Justen 2020-04-17 15:31:18 -07:00 committed by Marge Bot
parent d4537770bb
commit 78b643fb7f
1 changed files with 3 additions and 3 deletions

View File

@ -857,7 +857,7 @@ namespace {
* instruction \p inst.
*/
void
update_inst_scoreboard(const ordered_address *jps,
update_inst_scoreboard(const fs_visitor *shader, const ordered_address *jps,
const fs_inst *inst, unsigned ip, scoreboard &sb)
{
const bool exec_all = inst->force_writemask_all;
@ -910,7 +910,7 @@ namespace {
unsigned ip = 0;
foreach_block_and_inst(block, fs_inst, inst, shader->cfg)
update_inst_scoreboard(jps, inst, ip++, sbs[block->num]);
update_inst_scoreboard(shader, jps, inst, ip++, sbs[block->num]);
return sbs;
}
@ -1010,7 +1010,7 @@ namespace {
}
}
update_inst_scoreboard(jps, inst, ip, sb);
update_inst_scoreboard(shader, jps, inst, ip, sb);
ip++;
}