mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
i965/fs: Drop an unnecessary _safe on a list walk.
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
78ce522932
commit
7171c45d3a
1 changed files with 1 additions and 1 deletions
|
|
@ -1837,7 +1837,7 @@ fs_visitor::register_coalesce_2()
|
|||
int reg_to = inst->dst.reg;
|
||||
int reg_to_offset = inst->dst.reg_offset;
|
||||
|
||||
foreach_list_safe(node, &this->instructions) {
|
||||
foreach_list(node, &this->instructions) {
|
||||
fs_inst *scan_inst = (fs_inst *)node;
|
||||
|
||||
if (scan_inst->dst.file == GRF &&
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue