<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 --- - Analyzer says undefined behavior in uniform_int_distribution<size_t>"
   href="https://llvm.org/bugs/show_bug.cgi?id=26395">26395</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>Analyzer says undefined behavior in uniform_int_distribution<size_t>
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>libc++
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>3.7
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>Macintosh
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>MacOS X
          </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>All Bugs
          </td>
        </tr>

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

        <tr>
          <th>Reporter</th>
          <td>jared.grubb@gmail.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvm-bugs@lists.llvm.org, mclow.lists@gmail.com
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr></table>
      <p>
        <div>
        <pre>The clang static analyzer flags this code as having undefined behavior. Note
that if I change "size_t" to "unsigned" then things look fine. It looks like
the engine is 32-bit but it's going to try a 64-bit shift maybe? I'm totally
guessing here.

.../c++/v1/algorithm:2920
 warning: The result of the '>>' expression is undefined
    __mask0_ = __w0_ > 0 ? _Engine_result_type(~0) >> (_EDt - __w0_) :
                           ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~

To reproduce:

$ cat x.cpp
#include <random>
#include <cstddef>

size_t genRandom(size_t maxValue) {
        std::minstd_rand engine;
        std::uniform_int_distribution<size_t> dist{0, maxValue};
        return dist(engine);
}

$ clang++ x.cpp -std=c++14 --analyze</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>