<div dir="ltr"><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Jan 1, 2020 at 11:57 AM Artem Dergachev <<a href="mailto:noqnoqneo@gmail.com">noqnoqneo@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On 12/30/19 7:55 PM, <a href="mailto:philip.chimento@gmail.com" target="_blank">philip.chimento@gmail.com</a> wrote:<br>
> However, the returned region seems to be different in the constructor <br>
> and in the get() method. For example I'm testing my code with a <br>
> "struct MyStruct : std::unique_ptr<char>" and I'll get debug output <br>
> such as:<br>
><br>
>     constructor: Storing 0 (Loc) into map with key <br>
> SymRegion{conj_$5{struct MyStruct *, LC1, S3038538, #1}}<br>
>     get(): Retrieving key SymRegion{reg_$0<const struct MyStruct * <br>
> this>}: not present<br>
That sounds strange because i think i fixed most of these problems <br>
(<a href="https://www.youtube.com/watch?v=4n3l-ZcDJNY" rel="noreferrer" target="_blank">https://www.youtube.com/watch?v=4n3l-ZcDJNY</a>). Can you post the specific <br>
code you're trying to analyze? Is your Clang fresh enough?<br>
</blockquote></div><div><br></div><div>I'm using 9.0.0, would this be something that I need to build the master branch for?</div><div><br></div><div>The test code I'm trying to analyze is this:<br></div><div><br></div><div>struct Context;<br></div><div>char* StringFunc(Context* cx);<br><br>struct MyStruct : public std::unique_ptr<char> {<br>    MyStruct(char* p) : MyStruct::unique_ptr(p) {}<br>    operator bool() const { return !!get(); }<br>};<br><br>MyStruct OkayBoolConvertibleReturn(Context* cx) {<br>    char* ptr = StringFunc(cx);<br>    if (ptr)<br>        return ptr;<br>    return nullptr;<br>}</div><div><br></div><div>Cheers,<br></div>-- <br><div dir="ltr" class="gmail_signature">Philip</div></div>