]> granicus.if.org Git - clang/commitdiff
Add comments.
authorZhongxing Xu <xuzhongxing@gmail.com>
Thu, 25 Feb 2010 07:03:08 +0000 (07:03 +0000)
committerZhongxing Xu <xuzhongxing@gmail.com>
Thu, 25 Feb 2010 07:03:08 +0000 (07:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@97127 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Checker/GRCoreEngine.cpp

index dd1720edfd7f1086af30bf414e671123c56274e1..17ef1d48f50a9b544d5a174cb06752204a88082a 100644 (file)
@@ -430,7 +430,9 @@ void GRStmtNodeBuilder::GenerateAutoTransition(ExplodedNode* N) {
 
   // Check if this node entered a callee.
   if (isa<CallEnter>(N->getLocation())) {
-    Eng.WList->Enqueue(N, B, Idx); // Still use the index of the CallExpr.
+    // Still use the index of the CallExpr. It's needed to create the callee
+    // StackFrameContext.
+    Eng.WList->Enqueue(N, B, Idx);
     return;
   }