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

@@ -0,0 +1,14 @@
#include <map>
#include <unordered_set>
#include <vector>
#include <queue>
#include <iostream>
#include "swapOperators.h"
void runSwapOperators(std::map<std::string, std::vector<LoopGraph*>>& loopGraph, std::map<FuncInfo*, std::vector<SAPFOR::BasicBlock*>>& FullIR)
{
std::cout << "SWAP_OPERATORS Pass" << std::endl;
return;
};

View File

@@ -0,0 +1,6 @@
#pragma once
#include "../GraphLoop/graph_loops.h"
#include "../CFGraph/CFGraph.h"
void runSwapOperators(std::map<std::string, std::vector<LoopGraph*>>& loopGraph, std::map<FuncInfo*, std::vector<SAPFOR::BasicBlock*>>& FullIR);