aco: remove useless occurences of radv_nir_compiler_options
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Rhys Perry <pendingchaos02@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7061>
This commit is contained in:
committed by
Marge Bot
parent
8a6f60fc6b
commit
408195ec53
@@ -664,12 +664,12 @@ unsigned get_subdword_bytes_written(Program *program, const aco_ptr<Instruction>
|
||||
|
||||
} /* end namespace */
|
||||
|
||||
bool validate_ra(Program *program, const struct radv_nir_compiler_options *options) {
|
||||
bool validate_ra(Program *program) {
|
||||
if (!(debug_flags & DEBUG_VALIDATE_RA))
|
||||
return false;
|
||||
|
||||
bool err = false;
|
||||
aco::live live_vars = aco::live_var_analysis(program, options);
|
||||
aco::live live_vars = aco::live_var_analysis(program);
|
||||
std::vector<std::vector<Temp>> phi_sgpr_ops(program->blocks.size());
|
||||
|
||||
std::map<unsigned, Assignment> assignments;
|
||||
|
||||
Reference in New Issue
Block a user