================
@@ -492,6 +492,56 @@ transferCFGBlock(const CFGBlock &Block, AnalysisContext 
&AC,
   return State;
 }
 
+static Environment initializeEnvironment(const Environment &InitEnv) {
+  Environment ResultEnv = InitEnv.fork();
----------------
ymand wrote:

Why `fork`? The function name implies that the argument is being initialized. 
If that's not the case, then maybe a different name which indicates that a new 
(fork of the) Environment is being created and initialized? e.g. 
`createInitializedEnvironment`.

https://github.com/llvm/llvm-project/pull/73860
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to