<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 --- - -O1 breaks std::abs"
   href="http://llvm.org/bugs/show_bug.cgi?id=19174">19174</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>-O1 breaks std::abs
          </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>Linux
          </td>
        </tr>

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

        <tr>
          <th>Severity</th>
          <td>release blocker
          </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>quixote72@hotmail.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>The appended snippet, when compiled and executed thus:

  clang++ -o a.out t.cpp -O1 && ./a.out

produces the following output:

  z: -1372777060 abs(z): -1372777060

Removing -O1 results in the correct output. 

My clang version:

  Ubuntu clang version 3.5.0-1~exp1 (trunk) (based on LLVM 3.5.0)
  Target: x86_64-pc-linux-gnu
  Thread model: posix


#include <cmath>
#include <cstdlib>
#include <iostream>

int main ()
{
  int z = std::rand () * 4;
  std::cout << "z: " << z << " abs(z): " << std::abs (z) << std::endl;
  return 0;
}</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>