Author: zhongxingxu
Date: Sat Oct 25 05:26:46 2008
New Revision: 58135

URL: http://llvm.org/viewvc/llvm-project?rev=58135&view=rev
Log:
Now we can handle arrays.

Modified:
    cfe/trunk/lib/Analysis/GRExprEngine.cpp

Modified: cfe/trunk/lib/Analysis/GRExprEngine.cpp
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/GRExprEngine.cpp?rev=58135&r1=58134&r2=58135&view=diff

==============================================================================
--- cfe/trunk/lib/Analysis/GRExprEngine.cpp (original)
+++ cfe/trunk/lib/Analysis/GRExprEngine.cpp Sat Oct 25 05:26:46 2008
@@ -1529,11 +1529,6 @@
   
   const VarDecl* VD = dyn_cast<VarDecl>(D);
   
-  // FIXME: Add support for local arrays.
-  if (VD->getType()->isArrayType()) {
-    return;
-  }
-  
   Expr* Ex = const_cast<Expr*>(VD->getInit());
 
   // FIXME: static variables may have an initializer, but the second


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to