<p dir="ltr">(+Nick who had a hand in implementing this optimization)</p>
<p dir="ltr">I don't think there's a flag to control this, no.</p>
<div class="gmail_quote">On Sep 19, 2014 1:47 AM, "Richtarsky, Martin" <<a href="mailto:martin.richtarsky@sap.com">martin.richtarsky@sap.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
since clang 3.5 code as below is optimized away with -O1, assuming that the address of the object<br>
can never be NULL:<br>
<br>
class A { };<br>
<br>
int func(A& a)<br>
{<br>
    if (&a)<br>
    {<br>
        return 1;<br>
    }<br>
    return 0;<br>
}<br>
<br>
int main()<br>
{<br>
    A &a = *reinterpret_cast<A *>(0);<br>
    return func(a);<br>
}<br>
<br>
clang++ -Wall -O1  ptrnull.cpp -o ptrnull<br>
<br>
ptrnull.cpp:5:10: warning: reference cannot be bound to dereferenced null pointer<br>
in well-defined C++ code; pointer may be assumed to always convert to true [-Wundefined-bool-conversion]<br>
    if (&a)<br>
    ~~   ^<br>
1 warning generated.<br>
<br>
<br>
./ptrnull<br>
Return code: 1<br>
<br>
This is as described in the release notes.<br>
<br>
When changing func() as follows the warning is not shown, but clang still performs<br>
the same optimization. Shouldn't the warning be shown here aswell?<br>
<br>
int func(A& a)<br>
{<br>
    A *aptr = &a;<br>
    if (aptr)<br>
    {<br>
        return 1;<br>
    }<br>
    return 0;<br>
}<br>
<br>
Is it possible to disable this optimization specifically (without resorting to -O0)<br>
to gradually fix codebases that rely on such checks? I saw that I can use<br>
-fsanitize=null, which helps, but disabling the optimization would still<br>
be the best temporary workaround.<br>
<br>
Thanks and Best regards,<br>
Martin<br>
<br>
<br>
_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br>
</blockquote></div>