I am using the C67FASTMATH Math Library (c674xfastMath.lib) Version 2.01.00.0 and the following simple code will crash.
#include <math.h>
int main(void)
{
double resData;
double var = 0.0;
resData = 1.0 * sin(var);
return resData;
}
The code is O.K. if "var" is not 0.0. Single precision sin is also working O.K.. The sin function in defaut rts6740.lib is also working O.K.
Can this be a bug in the fastMath library?
Thanks.