Files
SAPFOR/Sapfor/_src/Inliner/inliner.h

13 lines
570 B
C
Raw Normal View History

2023-09-14 19:43:13 +03:00
#pragma once
#include <set>
#include <vector>
#include <map>
#include <string>
2023-11-26 18:57:05 +03:00
void callInliner(const std::map<std::string, std::vector<FuncInfo*>>& allFuncInfo,
std::vector<std::tuple<std::string, std::string, int>>& inDataProc,
std::map<std::string, std::set<std::pair<std::string, int>>>& inDataChains,
const std::set<std::string>& inDataChainsStart,
std::map<std::string, std::vector<Messages>>& SPF_messages,
const std::map<std::string, CommonBlock*>& commonBlocks);