<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 - [AArch64] Missing signed versions of NEON vcls/vclsq intrinsics"
href="https://bugs.llvm.org/show_bug.cgi?id=47407">47407</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>[AArch64] Missing signed versions of NEON vcls/vclsq intrinsics
</td>
</tr>
<tr>
<th>Product</th>
<td>new-bugs
</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>unassignedbugs@nondot.org
</td>
</tr>
<tr>
<th>Reporter</th>
<td>david.spickett@linaro.org
</td>
</tr>
<tr>
<th>CC</th>
<td>htmldeveloper@gmail.com, llvm-bugs@lists.llvm.org
</td>
</tr></table>
<p>
<div>
<pre>Created <span class=""><a href="attachment.cgi?id=23922" name="attach_23922" title="test file">attachment 23922</a> <a href="attachment.cgi?id=23922&action=edit" title="test file">[details]</a></span>
test file
<a href="https://developer.arm.com/architectures/instruction-sets/simd-isas/neon/intrinsics?search=vcls">https://developer.arm.com/architectures/instruction-sets/simd-isas/neon/intrinsics?search=vcls</a>
$ ./clang -target aarch64-arm-none-eabi -march=armv8-a+simd -c -o /dev/null
/tmp/missing_intrinsics.cpp
/tmp/missing_intrinsics.cpp:3:33: error: use of undeclared identifier
'vcls_u16'
int16x4_t (*fp10)(uint16x4_t) = vcls_u16;
^
/tmp/missing_intrinsics.cpp:4:33: error: use of undeclared identifier
'vcls_u32'
int32x2_t (*fp11)(uint32x2_t) = vcls_u32;
^
/tmp/missing_intrinsics.cpp:5:31: error: use of undeclared identifier 'vcls_u8'
int8x8_t (*fp12)(uint8x8_t) = vcls_u8;
^
/tmp/missing_intrinsics.cpp:6:33: error: use of undeclared identifier
'vclsq_u16'
int16x8_t (*fp13)(uint16x8_t) = vclsq_u16;
^
/tmp/missing_intrinsics.cpp:7:33: error: use of undeclared identifier
'vclsq_u32'
int32x4_t (*fp14)(uint32x4_t) = vclsq_u32;
^
/tmp/missing_intrinsics.cpp:8:33: error: use of undeclared identifier
'vclsq_u8'
int8x16_t (*fp15)(uint8x16_t) = vclsq_u8;
^
6 errors generated.
The _s8/16/32 variants are present.</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>