http://llvm.org/bugs/show_bug.cgi?id=10803
Summary: _mm_ucomige_sd missing from emmintrin.h
Product: clang
Version: trunk
Platform: PC
OS/Version: All
Status: NEW
Severity: normal
Priority: P
Component: Headers
AssignedTo: [email protected]
ReportedBy: [email protected]
CC: [email protected]
_mm_ucomige_sd is missing from emmintrin.h. I've copied the gcc
"implementation" locally and it seems to work for clang/llvm so i'm assuming it
is just a header issue and not a missing implementation problem.
Workaround:
static __inline__ int __attribute__((__always_inline__, __nodebug__))
_mm_ucomige_sd(__m128d __A, __m128d __B)
{
return __builtin_ia32_ucomisdge ((__v2df)__A, (__v2df)__B);
}
--
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs