<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><div><div>On Oct 16, 2008, at 6:51 PM, Zhongxing Xu wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0; ">Author: zhongxingxu<br>Date: Thu Oct 16 20:51:27 2008<br>New Revision: 57664<br><br>URL:<span class="Apple-converted-space"> </span><a href="http://llvm.org/viewvc/llvm-project?rev=57664&view=rev">http://llvm.org/viewvc/llvm-project?rev=57664&view=rev</a><br>Log:<br>Array and struct variables do have lvalue. For example,<br>struct s {};<br>void f() {<br> int a[10];<br> int (*p)[10];<br> p = &a;<br> (*p)[3] =1;<br><br> struct s d;<br> struct s *q;<br> q = &d;<br>}<br><br>We return the corresponding MemRegionVal for them.<br></span></blockquote></div><br><div>Hi Zhongxing,</div><div><br></div><div>Can you add this as a test case in the test/Analysis directory?  We just need something that tests coverage of this aspect of GRExprEngine.</div><div><br></div><div>Ted</div></body></html>