15 lines
388 B
C++
15 lines
388 B
C++
#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, int& countOfTransform)
|
|
{
|
|
std::cout << "SWAP_OPERATORS Pass" << std::endl;
|
|
countOfTransform += 1;
|
|
return;
|
|
}; |