Intel® ISA Extensions
Use hardware-based isolation and memory encryption to provide more code protection in your solutions.
1095 Discussions

Typing errors in xmm_func.h header file for _mm_prefetch intrinsic function

SergeyKostrov
Valued Contributor II
356 Views

There are two typing errors in xmm_func.h header file for _mm_prefetch intrinsic function. Details will be provided.

 

0 Kudos
1 Reply
SergeyKostrov
Valued Contributor II
356 Views
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 )
0 Kudos
Reply