[cfe-commits] r97127 - /cfe/trunk/lib/Checker/GRCoreEngine.cpp
Zhongxing Xu
xuzhongxing at gmail.com
Wed Feb 24 23:03:08 PST 2010
Author: zhongxingxu
Date: Thu Feb 25 01:03:08 2010
New Revision: 97127
URL: http://llvm.org/viewvc/llvm-project?rev=97127&view=rev
Log:
Add comments.
Modified:
cfe/trunk/lib/Checker/GRCoreEngine.cpp
Modified: cfe/trunk/lib/Checker/GRCoreEngine.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Checker/GRCoreEngine.cpp?rev=97127&r1=97126&r2=97127&view=diff
==============================================================================
--- cfe/trunk/lib/Checker/GRCoreEngine.cpp (original)
+++ cfe/trunk/lib/Checker/GRCoreEngine.cpp Thu Feb 25 01:03:08 2010
@@ -430,7 +430,9 @@
// 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;
}
More information about the cfe-commits
mailing list