mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 15:20:10 +01:00
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:
parent
2fbb4e85f7
commit
f91bfc80ba
1 changed files with 0 additions and 15 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue