<html>
    <head>
      <base href="https://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 --- - _Generic -Wdivision-by-zero bogus warning"
   href="https://llvm.org/bugs/show_bug.cgi?id=25390">25390</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>_Generic -Wdivision-by-zero bogus warning
          </td>
        </tr>

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

        <tr>
          <th>Version</th>
          <td>3.5
          </td>
        </tr>

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

        <tr>
          <th>OS</th>
          <td>Linux
          </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>-New Bugs
          </td>
        </tr>

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

        <tr>
          <th>Reporter</th>
          <td>eggert@cs.ucla.edu
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvm-bugs@lists.llvm.org
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr></table>
      <p>
        <div>
        <pre>Created <span class=""><a href="attachment.cgi?id=15208" name="attach_15208" title="program illustrating bogus warning">attachment 15208</a> <a href="attachment.cgi?id=15208&action=edit" title="program illustrating bogus warning">[details]</a></span>
program illustrating bogus warning

With the attached program, clang complains

u.c:5:47: warning: division by zero is undefined [-Wdivision-by-zero]
  int j = _Generic (i, int: 0, default: 0 ? 1 / 0 : 1);
                                              ^ ~

The warning is bogus because the expression is not evaluated, for two reasons:
first, it's inside a _Generic alternative not taken; second, it's inside an
if-branch that's not taken.</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>