select_array_dim_conf_pass_xnp #6

Merged
Alexander_KS merged 9 commits from select_array_dim_conf_pass_xnp into master 2023-09-22 17:58:43 +00:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit 27d2859d53 - Show all commits

View File

@@ -276,6 +276,8 @@ void InitPassesDependencies(map<passes, vector<passes>> &passDepsIn, set<passes>
void removalsFromPassesDependencies(map<passes, vector<passes>>& passDepsIn, const int curr_regime)
{
passDeps = &passDepsIn;
Pass(INSERT_PARALLEL_DIRS_NODIST) -= list({ FIND_FUNC_TO_INCLUDE, CHECK_FUNC_TO_INCLUDE });
Pass(passes(curr_regime)).applyRemovals();

View File

@@ -228,7 +228,7 @@ static void runPassesLoop(const vector<passes> &passesToRun, const char *prName,
if (showDebug)
printf("SAPFOR: run pass %d -> %s\n", passesToRun[i], passNames[passesToRun[i]]);
__spf_print(1, "SAPFOR: run pass %d -> %s\n", passesToRun[i], passNames[passesToRun[i]]);
runPass(passesToRun[i], prName, folderNameChar);
runPass(passesToRun[i], prName, folderNameChar, true);
}
}
#if __BOOST