File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -359,7 +359,7 @@ class EditProcedureCallsVisitor : public ASR::ASRPassBaseWalkVisitor<EditProcedu
359
359
al (al_), v(v_) {}
360
360
361
361
template <typename T>
362
- void check_and_update_args_for_pass_arr_by_data_passed_as_callback (const T& x) {
362
+ void update_args_for_pass_arr_by_data_funcs_passed_as_callback (const T& x) {
363
363
bool args_updated = false ;
364
364
Vec<ASR::call_arg_t > new_args;
365
365
new_args.reserve (al, x.n_args );
@@ -420,7 +420,7 @@ class EditProcedureCallsVisitor : public ASR::ASRPassBaseWalkVisitor<EditProcedu
420
420
bool is_external = ASR::is_a<ASR::ExternalSymbol_t>(*subrout_sym);
421
421
subrout_sym = ASRUtils::symbol_get_past_external (subrout_sym);
422
422
if ( v.proc2newproc .find (subrout_sym) == v.proc2newproc .end () ) {
423
- check_and_update_args_for_pass_arr_by_data_passed_as_callback (x);
423
+ update_args_for_pass_arr_by_data_funcs_passed_as_callback (x);
424
424
return ;
425
425
}
426
426
You can’t perform that action at this time.
0 commit comments