This commit is contained in:
Egor Mayorov
2025-03-25 15:18:49 +03:00
committed by Alexander
parent 8161609173
commit 3ab6eb50f5
6 changed files with 36 additions and 1 deletions

View File

@@ -72,6 +72,8 @@
#include "VisualizerCalls/SendMessage.h"
#include "VisualizerCalls/BuildGraph.h"
#include "SwapOperators/swapOperators.h"
#include "Transformations/enddo_loop_converter.h"
#include "Transformations/loop_transform.h"
#include "Transformations/array_assign_to_loop.h"
@@ -949,6 +951,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());