<html>
    <head>
      <base href="http://llvm.org/bugs/" />
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - No uninitialized warning for self-initialization (e.g., int x = x)"
   href="http://llvm.org/bugs/show_bug.cgi?id=18878">18878</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>No uninitialized warning for self-initialization (e.g., int x = x)
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>clang
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>trunk
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>PC
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>Windows NT
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>normal
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>Frontend
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>unassignedclangbugs@nondot.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>chengniansun@gmail.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvmbugs@cs.uiuc.edu
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr></table>
      <p>
        <div>
        <pre>Clang does not warn the self initialization: int x = x;


$: cat s.c
void f(void) {
  int x = x;
  int array[] = {1, 2};
  int y = array[y];
}
$: clang-trunk -Wuninitialized -Winit-self -c s.c
s.c:4:17: warning: variable 'y' is uninitialized when used within its own
initialization [-Wuninitialized]
  int y = array[y];
      ~         ^
1 warning generated.
$: clang-trunk --version
clang version 3.5 (trunk 201498)
Target: x86_64-unknown-linux-gnu
Thread model: posix
$: gcc-trunk -Winit-self -Wuninitialized -c s.c
s.c: In function ‘f’:
s.c:2:7: warning: ‘x’ is used uninitialized in this function [-Wuninitialized]
   int x = x;
       ^
s.c:4:7: warning: ‘y’ is used uninitialized in this function [-Wuninitialized]
   int y = array[y];
       ^</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>