Files
SAPFOR/src/SwapOperators/swapOperators.cpp

15 lines
388 B
C++
Raw Normal View History

2025-03-25 15:18:49 +03:00
#include <map>
#include <unordered_set>
#include <vector>
#include <queue>
#include <iostream>
#include "swapOperators.h"
2025-04-15 18:10:13 +03:00
void runSwapOperators(std::map<std::string, std::vector<LoopGraph*>>& loopGraph, std::map<FuncInfo*, std::vector<SAPFOR::BasicBlock*>>& FullIR, int& countOfTransform)
2025-03-25 15:18:49 +03:00
{
std::cout << "SWAP_OPERATORS Pass" << std::endl;
2025-04-15 18:10:13 +03:00
countOfTransform += 1;
2025-03-25 15:18:49 +03:00
return;
};