-
Bug
-
Resolution: Fixed
-
Medium
-
Code Generation Tools
-
CODEGEN-8580
-
C6000_8.3.8
-
default
The C6000 compiler manual shows this as the interface to the intrinsic _dmvd ...
long long _dmvd (long long src1, unsigned src2 );
The arguments are incorrect and should both be int. This is the correct interface ...
long long _dmvd (int src1, int src2 );