- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
There are two typing errors in xmm_func.h header file for _mm_prefetch intrinsic function. Details will be provided.
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In the xmm_func.h header it looks like:
...
/****************************************************/
/* NAME : mm_prefetch */
/* DESCRIPTION : prefetch */
/* IN : float *a : address to prefetch */
/* OUT : none */
/* RETURN : none */
/****************************************************/
_MM_INLINE_COMMAND static void __cdecl _mm_prefetch( char const *a, int sel )
{
/* second param not used */
volatile char pp = *a;
}
...
1. There is no underscore in the name of the intrinsic function ( mm_prefetch and it needs to be _mm_prefetch )
2. Incorrect data type for input parameter in the description ( it needs to be char const *a )

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page