<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 --- - no _mm_stream_si64 in emmintrin.h"
href="http://llvm.org/bugs/show_bug.cgi?id=17298">17298</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>no _mm_stream_si64 in emmintrin.h
</td>
</tr>
<tr>
<th>Product</th>
<td>clang
</td>
</tr>
<tr>
<th>Version</th>
<td>3.3
</td>
</tr>
<tr>
<th>Hardware</th>
<td>PC
</td>
</tr>
<tr>
<th>OS</th>
<td>All
</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>vvsed@hotmail.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>No _mm_stream_si64() function in emmintrin.h.
emmintrin.h of Intel C contains:
#if defined(__x86_64) || defined(_M_X64)
extern __int64 __ICL_INTRINCC _mm_cvtsd_si64(__m128d);
extern __int64 __ICL_INTRINCC _mm_cvttsd_si64(__m128d);
extern __m128d __ICL_INTRINCC _mm_cvtsi64_sd(__m128d, __int64);
extern void __ICL_INTRINCC _mm_stream_si64(__int64 *, __int64);
#endif
emmintrin.h of GNU C contains:
#ifdef __x86_64__
extern __inline void __attribute__((__gnu_inline__, __always_inline__,
__artificial__))
_mm_stream_si64 (long long int *__A, long long int __B)
{
__builtin_ia32_movnti64 (__A, __B);
}
#endif</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>