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; }
TCE Open Date:
Tuesday, December 17, 2019 - 19:06