intel/compiler: remove redundant code from fs_visitor::run_*

Reviewed-by: Caio Oliveira <caio.oliveira@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15079>
This commit is contained in:
Marcin Ślusarz 2022-02-18 13:16:07 +01:00 committed by Marge Bot
parent 2fbb4e85f7
commit f91bfc80ba

View file

@ -9217,9 +9217,6 @@ fs_visitor::run_fs(bool allow_spilling, bool do_rep_send)
fixup_3src_null_dest();
allocate_registers(allow_spilling);
if (failed)
return false;
}
return !failed;
@ -9255,9 +9252,6 @@ fs_visitor::run_cs(bool allow_spilling)
fixup_3src_null_dest();
allocate_registers(allow_spilling);
if (failed)
return false;
return !failed;
}
@ -9286,9 +9280,6 @@ fs_visitor::run_bs(bool allow_spilling)
fixup_3src_null_dest();
allocate_registers(allow_spilling);
if (failed)
return false;
return !failed;
}
@ -9333,9 +9324,6 @@ fs_visitor::run_task(bool allow_spilling)
fixup_3src_null_dest();
allocate_registers(allow_spilling);
if (failed)
return false;
return !failed;
}
@ -9380,9 +9368,6 @@ fs_visitor::run_mesh(bool allow_spilling)
fixup_3src_null_dest();
allocate_registers(allow_spilling);
if (failed)
return false;
return !failed;
}