<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 --- - [ARM] fp16 neon intrinsics are available even the target doesn't support fp16"
   href="https://llvm.org/bugs/show_bug.cgi?id=27550">27550</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>[ARM] fp16 neon intrinsics are available even the target doesn't support fp16
          </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>normal
          </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>silviu.baranga@arm.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvm-bugs@lists.llvm.org
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr></table>
      <p>
        <div>
        <pre>The following code:

#include <arm_neon.h>

float16x4_t f(float32x4_t x) {
  return vcvt_f16_f32(x);
}

compiled with:

clang -target armv7-linux-gnueabi -mfpu=neon rep.c
-I/usr/include/arm-linux-gnueabihf -mfloat-abi=hard

triggers an assert in instruction selection:

fatal error: error in backend: Cannot select: intrinsic
%llvm.arm.neon.vcvtfp2hf

This is because we're using the vcvt_f16_f32 intrinsic and defined the fpu to
be neon (not neon-fp16), and therefore the target doesn't support the f16 vcvt
instruction.

We should be emitting an error in the frontend instead.</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>