This commit is contained in:
Egor Mayorov
2025-03-25 15:18:49 +03:00
committed by ALEXks
parent 85e2a60183
commit 1028e20177
6 changed files with 35 additions and 1 deletions

View File

@@ -89,6 +89,7 @@
#include "Transformations/DeadCodeRemoving/dead_code.h"
#include "Transformations/RenameSymbols/rename_symbols.h"
#include "Transformations/FunctionInlining/inliner.h"
#include "SwapOperators/swapOperators.h"
#include "ProjectParameters/projectParameters.h"
@@ -939,6 +940,10 @@ static bool runAnalysis(SgProject &project, const int curr_regime, const bool ne
internalExit = err;
}
}
else if (curr_regime == SWAP_OPERATORS)
{
runSwapOperators(loopGraph, fullIR);
}
else if (curr_regime == PRIVATE_REMOVING_ANALYSIS)
{
auto itFound = loopGraph.find(file->filename());