addede new pass, improved IR

This commit is contained in:
ALEXks
2023-12-02 10:20:13 +03:00
parent f5bc37c845
commit d48a73043a
9 changed files with 42 additions and 9 deletions

View File

@@ -2218,12 +2218,12 @@ SgStatement* SgStatement::nextInChildList()
return x;
}
std::string SgStatement::sunparse()
std::string SgStatement::sunparse(int lang)
{
#ifdef __SPF
checkConsistence();
#endif
return std::string(unparse());
return std::string(unparse(lang));
}