trivial
This commit is contained in:
@@ -1106,13 +1106,11 @@ static bool runAnalysis(SgProject &project, const int curr_regime, const bool ne
|
|||||||
{
|
{
|
||||||
auto itFound = loopGraph.find(file->filename());
|
auto itFound = loopGraph.find(file->filename());
|
||||||
if (itFound != loopGraph.end())
|
if (itFound != loopGraph.end())
|
||||||
removePrivatesAnalysis(itFound->second, getObjectForFileFromMap(file_name, SPF_messages),
|
removePrivatesAnalysis(itFound->second, getObjectForFileFromMap(file_name, SPF_messages), usersDirectives, commonBlocks, allFuncInfo);
|
||||||
usersDirectives, commonBlocks, allFuncInfo);
|
|
||||||
}
|
}
|
||||||
else if (curr_regime == PRIVATE_REMOVING)
|
else if (curr_regime == PRIVATE_REMOVING)
|
||||||
{
|
{
|
||||||
removePrivates(file, getObjectForFileFromMap(file_name, SPF_messages),
|
removePrivates(file, getObjectForFileFromMap(file_name, SPF_messages), commonBlocks, allFuncInfo, countOfTransform);
|
||||||
commonBlocks, allFuncInfo, countOfTransform);
|
|
||||||
}
|
}
|
||||||
else if (curr_regime == CREATE_INTER_TREE)
|
else if (curr_regime == CREATE_INTER_TREE)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1883,7 +1883,7 @@ static bool isDifferentRefs(SgExpression* exp, const pair<string, vector<FixedSu
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static pair<SAPFOR::Argument*, set<int>> findVarInRDSet(const map<SAPFOR::Argument*, set<int>> RD_In, string var)
|
static pair<SAPFOR::Argument*, set<int>> findVarInRDSet(const map<SAPFOR::Argument*, set<int>>& RD_In, const string& var)
|
||||||
{
|
{
|
||||||
for (auto& RD_InElem : RD_In)
|
for (auto& RD_InElem : RD_In)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define VERSION_SPF "2285"
|
#define VERSION_SPF "2286"
|
||||||
|
|||||||
Reference in New Issue
Block a user