refactoring: removed unnecessary

This commit is contained in:
ALEXks
2025-06-04 13:08:38 +03:00
parent f53d514a47
commit fca4f632e4
118 changed files with 250 additions and 250 deletions

View File

@@ -5,7 +5,7 @@
#include "../LoopAnalyzer/loop_analyzer.h"
#include "expr_transform.h"
#include "../Utils/errors.h"
#include "errors.h"
#include "../CFGraph/CFGraph.h"
#include "../SageAnalysisTool/OmegaForSage/include/lang-interf.h"
#include "../DirectiveProcessing/directive_parser.h"

View File

@@ -4,8 +4,8 @@
#include <map>
#include "dvm.h"
#include "../GraphLoop/graph_loops.h"
#include "graph_loops.h"
#include "../SageAnalysisTool/depGraph.h"
#include "../Utils/CommonBlock.h"
#include "CommonBlock.h"
int splitLoops(SgFile *file, std::vector<LoopGraph*> &loopGraphs, std::vector<Messages> &messages, const std::map<LoopGraph*, depGraph*>& depInfoForLoopGraph, const std::map<std::string, CommonBlock*>& commonBlocks, const std::map<std::string, std::vector<FuncInfo*>>& allFuncInfo, int& countOfTransform);