From 040732920b1bcc9005345a4518955c904c50caa9 Mon Sep 17 00:00:00 2001 From: Sahil Jain Date: Mon, 30 Jun 2025 21:29:53 +0530 Subject: [PATCH] Add comment --- ASTree.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ASTree.cpp b/ASTree.cpp index ebd8e81..b5b42f7 100644 --- a/ASTree.cpp +++ b/ASTree.cpp @@ -1689,6 +1689,8 @@ PycRef BuildFromCode(PycRef code, PycModule* mod) } // end for loop here + // TODO : Ensure that FOR loop ends here. + // Due to CACHE instructions at play, this can change. if (curblock->blktype() == ASTBlock::BLK_FOR) { PycRef prev = blocks.top(); blocks.pop();