📄 optimize.h
字号:
////////////////////////////////////////////////////////////////////////////////// optimize.[h,cc] -- procedures for AST optimization//// Optimization is minimal. We detect leaf procedures and procedures with// no local vars. Also, constant expressions are evaluated and some loop// elimination is done in the form of hard coding constant conditions.//#ifndef OPTIMIZE_H#define OPTIMIZE_Hextern bool evaluate_consts;syntax_tree_t *optimize_syntax_tree(syntax_tree_t *node);// Optimize the abstract syntax tree#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -