Compiler Warning (Level 1) C4732 (Windows Embedded CE 6.0)
1/5/2010
instrinsic ' %s' is not supported in this architecture
The compiler encountered an intrinsic function that is not supported in the target architecture.
The __trap intrinsic is not supported under the MIPS 16 ISA. As a result, the following code example causes the compiler to generate compiler warning C4732.
Example
#include <cmnintrin.h>
int main()
{
int returnCode = 1;
#if (_INTRINSIC_IS_SUPPORTED(__trap))
__trap(1);
#else
return 1;
#endif
return 0;
}