improved Sage, fixed dedlock

This commit is contained in:
ALEXks
2023-12-06 12:01:00 +03:00
parent f08f46a536
commit 2540237e42
8 changed files with 13592 additions and 13585 deletions

View File

@@ -243,9 +243,9 @@ public:
inline void replaceSymbBySymb(SgSymbol &symb, SgSymbol &newsymb);
inline void replaceSymbBySymbSameName(SgSymbol &symb, SgSymbol &newsymb);
inline void replaceTypeInStmt(SgType &old, SgType &newtype);
char* unparse(int lang = 2); // FORTRAN_LANG
char* unparse(int lang = 0); // FORTRAN_LANG
inline void unparsestdout();
std::string sunparse(int lang = 2); // FORTRAN_LANG
std::string sunparse(int lang = 0); // FORTRAN_LANG
inline char *comments(); //preceding comment lines.
void addComment(const char *com);
void addComment(char *com);
@@ -3684,7 +3684,7 @@ inline char* SgStatement::unparse(int lang)
#ifdef __SPF
checkConsistence();
#endif
return UnparseBif_Char(thebif, lang); //2 - fortran language
return UnparseBif_Char(thebif, lang); //0 - fortran language
}
inline void SgStatement::unparsestdout()

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff