From 0024a9af26ca0710b4c5fc292641df29f3530fed Mon Sep 17 00:00:00 2001 From: Zhongxing Xu Date: Thu, 25 Feb 2010 07:03:08 +0000 Subject: [PATCH] Add comments. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@97127 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Checker/GRCoreEngine.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/Checker/GRCoreEngine.cpp b/lib/Checker/GRCoreEngine.cpp index dd1720edfd..17ef1d48f5 100644 --- a/lib/Checker/GRCoreEngine.cpp +++ b/lib/Checker/GRCoreEngine.cpp @@ -430,7 +430,9 @@ void GRStmtNodeBuilder::GenerateAutoTransition(ExplodedNode* N) { // Check if this node entered a callee. if (isa(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; } -- 2.50.1