<div dir="ltr">1. Initial support for local arrays in RegionStoreManager::AddDecl()<br>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: <br>
<br>int a[10]; <br>int (*p)[10]; <br>p = &a; <br>(*p)[3] = 1;<br><br>We load array variable's lvalue from its lvalue as we do in the case of loc::FuncVal.<br></div>