better name for key variable in script optimization

This commit is contained in:
Vern Paxson 2024-01-10 18:43:55 -08:00 committed by Arne Welzel
parent cb4900847d
commit 24e182f080
2 changed files with 13 additions and 12 deletions

View file

@ -82,8 +82,8 @@ private:
// outer "break" in that context.
FunctionFlavor func_flavor;
// The statement we are currently traversing.
const Stmt* curr_stmt = nullptr;
// The most recently traversed statement.
const Stmt* last_stmt_traversed = nullptr;
// Used to number Stmt objects found during AST traversal.
int stmt_num;