[cfe-commits] r79057 - /cfe/trunk/lib/CodeGen/CGExpr.cpp

Chris Lattner sabre at nondot.org
Fri Aug 14 16:43:22 PDT 2009


Author: lattner
Date: Fri Aug 14 18:43:22 2009
New Revision: 79057

URL: http://llvm.org/viewvc/llvm-project?rev=79057&view=rev
Log:
use GetVLASize instead of accessing VLASizeMap directly, this gets an assert if 
VLASize isn't populated for the type yet.

Modified:
    cfe/trunk/lib/CodeGen/CGExpr.cpp

Modified: cfe/trunk/lib/CodeGen/CGExpr.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGExpr.cpp?rev=79057&r1=79056&r2=79057&view=diff

==============================================================================
--- cfe/trunk/lib/CodeGen/CGExpr.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGExpr.cpp Fri Aug 14 18:43:22 2009
@@ -887,7 +887,7 @@
   llvm::Value *Address = 0;
   if (const VariableArrayType *VAT = 
         getContext().getAsVariableArrayType(E->getType())) {
-    llvm::Value *VLASize = VLASizeMap[VAT];
+    llvm::Value *VLASize = GetVLASize(VAT);
     
     Idx = Builder.CreateMul(Idx, VLASize);
     





More information about the cfe-commits mailing list