[cfe-commits] r50090 - /cfe/trunk/include/clang/Analysis/PathSensitive/GRExprEngine.h

Ted Kremenek kremenek at apple.com
Mon Apr 21 22:40:28 PDT 2008


Author: kremenek
Date: Tue Apr 22 00:40:28 2008
New Revision: 50090

URL: http://llvm.org/viewvc/llvm-project?rev=50090&view=rev
Log:
Add VisitArraySubscriptExpr.

Modified:
    cfe/trunk/include/clang/Analysis/PathSensitive/GRExprEngine.h

Modified: cfe/trunk/include/clang/Analysis/PathSensitive/GRExprEngine.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/PathSensitive/GRExprEngine.h?rev=50090&r1=50089&r2=50090&view=diff

==============================================================================
--- cfe/trunk/include/clang/Analysis/PathSensitive/GRExprEngine.h (original)
+++ cfe/trunk/include/clang/Analysis/PathSensitive/GRExprEngine.h Tue Apr 22 00:40:28 2008
@@ -486,6 +486,10 @@
   ///  evaluate to an LVal representing the location of the referred Decl.
   void VisitLVal(Expr* Ex, NodeTy* Pred, NodeSet& Dst);
   
+  /// VisitArraySubscriptExpr - Transfer function for array accesses.
+  void VisitArraySubscriptExpr(ArraySubscriptExpr* Ex, NodeTy* Pred,
+                               NodeSet& Dst, bool asLVal);
+  
   /// VisitAsmStmt - Transfer function logic for inline asm.
   void VisitAsmStmt(AsmStmt* A, NodeTy* Pred, NodeSet& Dst);
   





More information about the cfe-commits mailing list