Intel® ISA Extensions
Use hardware-based isolation and memory encryption to provide more code protection in your solutions.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
1135 Discussions

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

SergeyKostrov
Valued Contributor II
670 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
670 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