<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 --- - more misc math builtings missing llfloor...."
   href="http://llvm.org/bugs/show_bug.cgi?id=17450">17450</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>more misc math builtings missing llfloor....
          </td>
        </tr>

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

        <tr>
          <th>Version</th>
          <td>3.2
          </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>C++
          </td>
        </tr>

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

        <tr>
          <th>Reporter</th>
          <td>rkotler@mips.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>dgregor@apple.com, llvmbugs@cs.uiuc.edu
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr></table>
      <p>
        <div>
        <pre>Created <span class=""><a href="attachment.cgi?id=11327" name="attach_11327" title="gcc flles">attachment 11327</a> <a href="attachment.cgi?id=11327&action=edit" title="gcc flles">[details]</a></span>
gcc flles

rkotler@mipssw006:~/rt-rk-4doug/tmp$ ~/llvmw/install/bin/clang
../tests-c/builtin-rounding-1.c 
../tests-c/builtin-rounding-1.c:26:3: error: use of unknown builtin
      '__builtin_lfloor' [-Wimplicit-function-declaration]
  TEST(lfloor,  0, 0);
  ^
../tests-c/builtin-rounding-1.c:13:7: note: expanded from macro 'TEST'
  if (__builtin_##FN (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_lfloor
^
../tests-c/builtin-rounding-1.c:26:3: note: did you mean '__builtin_floor'?
../tests-c/builtin-rounding-1.c:13:7: note: expanded from macro 'TEST'
  if (__builtin_##FN (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_lfloor
^
../tests-c/builtin-rounding-1.c:21:3: note: '__builtin_floor' declared here
  TEST(floor,   0, 0);
  ^
../tests-c/builtin-rounding-1.c:13:7: note: expanded from macro 'TEST'
  if (__builtin_##FN (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:10:1: note: expanded from here
__builtin_floor
^
../tests-c/builtin-rounding-1.c:26:3: error: use of unknown builtin
      '__builtin_lfloorf' [-Wimplicit-function-declaration]
  TEST(lfloor,  0, 0);
  ^
../tests-c/builtin-rounding-1.c:14:7: note: expanded from macro 'TEST'
  if (__builtin_##FN##f (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_lfloorf
^
../tests-c/builtin-rounding-1.c:26:3: error: use of unknown builtin
      '__builtin_lfloorl' [-Wimplicit-function-declaration]
../tests-c/builtin-rounding-1.c:15:7: note: expanded from macro 'TEST'
  if (__builtin_##FN##l (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_lfloorl
^
../tests-c/builtin-rounding-1.c:27:3: error: use of unknown builtin
      '__builtin_llfloor' [-Wimplicit-function-declaration]
  TEST(llfloor, 0, 0);
  ^
../tests-c/builtin-rounding-1.c:13:7: note: expanded from macro 'TEST'
  if (__builtin_##FN (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_llfloor
^
../tests-c/builtin-rounding-1.c:27:3: note: did you mean '__builtin_lfloor'?
../tests-c/builtin-rounding-1.c:13:7: note: expanded from macro 'TEST'
  if (__builtin_##FN (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_llfloor
^
../tests-c/builtin-rounding-1.c:26:3: note: '__builtin_lfloor' declared here
  TEST(lfloor,  0, 0);
  ^
../tests-c/builtin-rounding-1.c:13:7: note: expanded from macro 'TEST'
  if (__builtin_##FN (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_lfloor
^
../tests-c/builtin-rounding-1.c:27:3: error: use of unknown builtin
      '__builtin_llfloorf' [-Wimplicit-function-declaration]
  TEST(llfloor, 0, 0);
  ^
../tests-c/builtin-rounding-1.c:14:7: note: expanded from macro 'TEST'
  if (__builtin_##FN##f (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_llfloorf
^
../tests-c/builtin-rounding-1.c:27:3: error: use of unknown builtin
      '__builtin_llfloorl' [-Wimplicit-function-declaration]
../tests-c/builtin-rounding-1.c:15:7: note: expanded from macro 'TEST'
  if (__builtin_##FN##l (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_llfloorl
^
../tests-c/builtin-rounding-1.c:28:3: error: use of unknown builtin
      '__builtin_lceil' [-Wimplicit-function-declaration]
  TEST(lceil,  0, 0);
  ^
../tests-c/builtin-rounding-1.c:13:7: note: expanded from macro 'TEST'
  if (__builtin_##FN (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_lceil
^
../tests-c/builtin-rounding-1.c:28:3: note: did you mean '__builtin_ceil'?
../tests-c/builtin-rounding-1.c:13:7: note: expanded from macro 'TEST'
  if (__builtin_##FN (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_lceil
^
../tests-c/builtin-rounding-1.c:22:3: note: '__builtin_ceil' declared here
  TEST(ceil,    0, 0);
  ^
../tests-c/builtin-rounding-1.c:13:7: note: expanded from macro 'TEST'
  if (__builtin_##FN (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:18:1: note: expanded from here
__builtin_ceil
^
../tests-c/builtin-rounding-1.c:28:3: error: use of unknown builtin
      '__builtin_lceilf' [-Wimplicit-function-declaration]
  TEST(lceil,  0, 0);
  ^
../tests-c/builtin-rounding-1.c:14:7: note: expanded from macro 'TEST'
  if (__builtin_##FN##f (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_lceilf
^
../tests-c/builtin-rounding-1.c:28:3: error: use of unknown builtin
      '__builtin_lceill' [-Wimplicit-function-declaration]
../tests-c/builtin-rounding-1.c:15:7: note: expanded from macro 'TEST'
  if (__builtin_##FN##l (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_lceill
^
../tests-c/builtin-rounding-1.c:29:3: error: use of unknown builtin
      '__builtin_llceil' [-Wimplicit-function-declaration]
  TEST(llceil, 0, 0);
  ^
../tests-c/builtin-rounding-1.c:13:7: note: expanded from macro 'TEST'
  if (__builtin_##FN (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_llceil
^
../tests-c/builtin-rounding-1.c:29:3: note: did you mean '__builtin_lceil'?
../tests-c/builtin-rounding-1.c:13:7: note: expanded from macro 'TEST'
  if (__builtin_##FN (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_llceil
^
../tests-c/builtin-rounding-1.c:28:3: note: '__builtin_lceil' declared here
  TEST(lceil,  0, 0);
  ^
../tests-c/builtin-rounding-1.c:13:7: note: expanded from macro 'TEST'
  if (__builtin_##FN (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_lceil
^
../tests-c/builtin-rounding-1.c:29:3: error: use of unknown builtin
      '__builtin_llceilf' [-Wimplicit-function-declaration]
  TEST(llceil, 0, 0);
  ^
../tests-c/builtin-rounding-1.c:14:7: note: expanded from macro 'TEST'
  if (__builtin_##FN##f (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_llceilf
^
../tests-c/builtin-rounding-1.c:29:3: error: use of unknown builtin
      '__builtin_llceill' [-Wimplicit-function-declaration]
../tests-c/builtin-rounding-1.c:15:7: note: expanded from macro 'TEST'
  if (__builtin_##FN##l (VALUE) != RESULT) link_error (__LINE__); \
      ^
<scratch space>:50:1: note: expanded from here
__builtin_llceill
^</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>