[LLVMbugs] [Bug 17298] New: no _mm_stream_si64 in emmintrin.h
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Fri Sep 20 01:04:17 PDT 2013
http://llvm.org/bugs/show_bug.cgi?id=17298
Bug ID: 17298
Summary: no _mm_stream_si64 in emmintrin.h
Product: clang
Version: 3.3
Hardware: PC
OS: All
Status: NEW
Severity: normal
Priority: P
Component: C++
Assignee: unassignedclangbugs at nondot.org
Reporter: vvsed at hotmail.com
CC: dgregor at apple.com, llvmbugs at cs.uiuc.edu
Classification: Unclassified
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
--
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20130920/64e732ae/attachment.html>
More information about the llvm-bugs
mailing list