<div dir="ltr"><div>Hello <br></div>I tried to run simple check with following example<br><div style="color:rgb(0,0,0);background-color:rgb(255,255,254);font-family:Fira Mono;font-weight:normal;font-size:14px;line-height:19px;white-space:pre"><div><span style="color:rgb(0,0,255)"><br></span></div><div><span style="color:rgb(0,0,255)">int</span><span style="color:rgb(0,0,0)"> foo(){</span></div><div><span style="color:rgb(0,0,0)">    </span><span style="color:rgb(0,0,255)">int</span><span style="color:rgb(0,0,0)"> f[</span><span style="color:rgb(9,136,90)">10</span><span style="color:rgb(0,0,0)">];</span></div><div><span style="color:rgb(0,0,0)">    </span><span style="color:rgb(0,0,255)">return</span><span style="color:rgb(0,0,0)">  f[</span><span style="color:rgb(9,136,90)">0</span><span style="color:rgb(0,0,0)">];</span></div><div><span style="color:rgb(0,0,0)">}</span></div><div><span style="color:rgb(0,0,0)"><br></span></div><div><span style="color:rgb(0,0,0)">with clang 5.0.0   -Wuninitialized    There is no error.</span></div><div><span style="color:rgb(0,0,0)"><br></span></div><div><span style="color:rgb(0,0,0)">with gcc 7.2.0     -Wuinitialized  we get error.</span></div><div><br><div class="gmail-lm_items" style="width:541px;height:700px"><div class="gmail-lm_item_container" style="width:541px;height:700px"><div class="gmail-lm_content" style="width:540.6px;height:699.6px"><pre class="gmail-content" style="font-size:10pt"><div><span style="font-family:monospace,monospace"><source>: In function 'int foo()':</span></div><div><span style="font-family:monospace,monospace">5 : <source>:5:16: warning: 'f[0]' is used uninitialized in this function [-Wuninitialized]</span></div><div><span style="font-family:monospace,monospace">     return  f[0];</span></div><div><span style="font-family:monospace,monospace">                ^</span></div><div><span style="font-family:monospace,monospace">Compiler exited with result code 0</span></div><div><span style="font-family:monospace,monospace"><br></span></div><div><span style="font-family:monospace,monospace">Wonder why?<br></span></div><div><span style="font-family:monospace,monospace">Should i raise request on bugzilla ?</span></div><div><span style="font-family:monospace,monospace"><br></span></div></pre></div></div></div></div></div></div>