<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 - clang-cl is generating call to non-existing lib function for win32 with /fp:except option"
   href="https://bugs.llvm.org/show_bug.cgi?id=44394">44394</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>clang-cl is generating call to non-existing lib function for win32 with /fp:except option
          </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>enhancement
          </td>
        </tr>

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

        <tr>
          <th>Component</th>
          <td>LLVM Codegen
          </td>
        </tr>

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

        <tr>
          <th>Reporter</th>
          <td>zamazan4ik@tut.by
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvm-bugs@lists.llvm.org, neeilans@live.com, richard-llvm@metafoo.co.uk
          </td>
        </tr></table>
      <p>
        <div>
        <pre>With recent ffp-exception-behavior=maytrap/strict, fp:except in clang-cl became
generate FPE aware code.

But in case of floorf and ceilf it generates call to non-existing library
function.

clang-cl.exe -m32 /Ox /fp:except testFloor.cpp /FA 
testFloor.cpp:


#include <math.h>
float ret(float v) {  return floorf(v); }


resulting assember:
 push eax
 movss xmm0, dword ptr [esp + 8] 
 movss dword ptr [esp], xmm0
 call _floorf #no such function!!!
 pop eax
 ret


Expected behaviour:

there is no floorf lib function. Like with cosf and other math functions,
floorf in MSVC is implemented as inline function.
So, it should be call to _floor (with apropriate conversion first).</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>