<html>
    <head>
      <base href="https://bugs.llvm.org/">
    </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 - Compiler crash in vectorizer with FP induction variable"
   href="https://bugs.llvm.org/show_bug.cgi?id=38800">38800</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>Compiler crash in vectorizer with FP induction variable
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>libraries
          </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>Loop Optimizer
          </td>
        </tr>

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

        <tr>
          <th>Reporter</th>
          <td>warren_ristow@playstation.sony.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvm-bugs@lists.llvm.org
          </td>
        </tr></table>
      <p>
        <div>
        <pre>We've run into a compiler crash with vectorization when -ffast-math is enabled.
Here is a reduced test-case:

$ cat test.cpp
void foo(float *ptr, float val) {
  for (float f = 0.1f; f < 1.0f; f += 0.01f)
    *ptr += val;
}
$ clang++ -c -O2 -ffast-math -fno-vectorize test.cpp  # No crash
$ clang++ -c -O2 -ffast-math test.cpp
    ...
  Crash Dump Info
    ... 
0.      Program arguments: ...
1.      <eof> parser at end of file
2.      Per-module optimization passes
3.      Running pass 'Function Pass Manager' on module 'test.cpp'.
4.      Running pass 'Loop Vectorization' on function '@_Z3fooPff'
    ... 
$

Bisecting identifies that the problem appeared at r276554:

  [Loop Vectorizer] Handling loops FP induction variables.

which was first released in llvm 4.0.  The problem still appears
in ToT (tested r341150).</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>