diff --git a/src/intel/compiler/brw_fs_scoreboard.cpp b/src/intel/compiler/brw_fs_scoreboard.cpp index b5ce0fc4f70..3b1f6deac60 100644 --- a/src/intel/compiler/brw_fs_scoreboard.cpp +++ b/src/intel/compiler/brw_fs_scoreboard.cpp @@ -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++; }