1 Commits

Author SHA1 Message Date
ALEXks
bdb74c8ae7 fixed function names 2024-03-23 11:17:46 +03:00

View File

@@ -181,10 +181,6 @@ static map<char, SgType*> FunctionImplicitCheck(SgStatement* function, const map
void ImplicitCheck(SgFile* file) void ImplicitCheck(SgFile* file)
{ {
if (file->filename() == std::string("add.f"))
{
file->unparsestdout();
}
map<SgStatement*, map<char, SgType*>> typesByFunctions; map<SgStatement*, map<char, SgType*>> typesByFunctions;
for (int func = 0; func < file->numberOfFunctions(); ++func) for (int func = 0; func < file->numberOfFunctions(); ++func)
@@ -194,9 +190,4 @@ void ImplicitCheck(SgFile* file)
} }
typesByFunctions.clear(); typesByFunctions.clear();
if (file->filename() == std::string("add.f"))
{
file->unparsestdout();
}
} }