[cfe-commits] [PATCH] RegionStore

Zhongxing Xu xuzhongxing at gmail.com
Sun Oct 19 06:24:55 PDT 2008


1. Initial support for local arrays in RegionStoreManager::AddDecl()
2. Move special processing of loading array variable's lvalue from
GRExprEngine to Store. This simplifies code. And this is also what we have
to do when we processing code like:

int a[10];
int (*p)[10];
p = &a;
(*p)[3] = 1;

We load array variable's lvalue from its lvalue as we do in the case of
loc::FuncVal.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20081019/29314152/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: regionstore.patch
Type: application/octet-stream
Size: 11475 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20081019/29314152/attachment.obj>


More information about the cfe-commits mailing list