<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Sat, Jun 25, 2016 at 6:25 PM, Jeffrey Walton <span dir="ltr"><<a href="mailto:noloader@gmail.com" target="_blank">noloader@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On Sat, Jun 25, 2016 at 2:01 PM, Andrew Fuller via cfe-users<br>
<<a href="mailto:cfe-users@lists.llvm.org">cfe-users@lists.llvm.org</a>> wrote:<br>
> I'm trying to understand an issue reported by Clang's static analysis tool.<br>
> The code below demonstrates the issue:<br>
><br>
> $ cat problem.c<br>
> #include <stdint.h><br>
><br>
> int main() {<br>
> #if VARIANT==1<br>
>    uint32_t data = 0xdeadbeef;<br>
>    uint8_t* byte = (uint8_t*)&data;<br>
>    uint8_t value = byte[0];<br>
> #elif VARIANT==2<br>
>    uint32_t data = 0xdeadbeef;<br>
>    uint8_t* byte = (uint8_t*)&data;<br>
>    uint8_t value = byte[1];<br>
> #elif VARIANT==3<br>
>    uint32_t data[1] = {0xdeadbeef};<br>
>    uint8_t* byte = (uint8_t*)&data[0];<br>
>    uint8_t value = byte[0];<br>
> #elif VARIANT==4<br>
>    uint32_t data[1] = {0xdeadbeef};<br>
>    uint8_t* byte = (uint8_t*)&data[0];<br>
>    uint8_t value = byte[1];<br>
> #else<br>
> #error "Define VARIANT={1,2,3,4}"<br>
> #endif<br>
>    return value;<br>
> }<br>
><br>
<br>
</div></div>I recall seeing this before, but I don't recall if its valid C:<br>
<span class=""><br>
    uint8_t* byte = (uint8_t*)&data;<br>
    uint8_t value = byte[0];<br>
<br>
</span>Are you getting other compiler warnings with it? If not, try -Wall -Wextra.<br>
<br>
Jeff<br>
</blockquote></div><br></div><div class="gmail_extra">Thanks for the reply, Jeff.  Clang 3.8 is warning-free with -Wall and -Weverything going through all 4 code paths (VARIANT set to 1-4).  Ditto for gcc 5.2.1 with -Wall -Wextra.  Only scan-build grumbles.</div><div class="gmail_extra"><br></div><div class="gmail_extra">-Andrew</div></div>