Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.

_udiv128 in VS2019, not in ICL2020?

Dave_P_1
Beginner
820 Views

Is there an _udiv128 intrinsic in ICL2020, like there is in VS2019?

I just installed the new Parallel Studio 2020 update, and the following program fails to compile in ICL2020, but compiles and runs just fine in VS2019.  ICL returns the error message:

"error: identifier "_udiv128" is undefined"

 

#include <immintrin.h> // for _udiv128 in VS2019.

int main()
{
  unsigned long long Result;

  _udiv128( 1234, 1234, 12345678, &Result );

  return Result;
} 

 

0 Kudos
2 Replies
Viet_H_Intel
Moderator
820 Views

Thanks for report this issue. I've reported to our Developer. Internal case is: CMPLRIL0-32346

0 Kudos
Dave_P_1
Beginner
820 Views

The problem still exists in the new 2020 Update 1.

0 Kudos
Reply