-
Bug
-
Resolution: Won't Fix
-
Not Prioritized
-
Code Generation Tools
-
CODEGEN-12093
-
-
default
-
We do not support denormal numbers.
The attached test case has these lines ...
double a, b; /* .. */ a = pow(10, -320); b = pow(10, -20); /* ... */ printf("a is %e\n", a); printf("b is %e\n", b);
When run, the output is ...
a is 0.000000e+00 b is 1.000000e-20
The expected output is ...
a is 1.000000e-320 b is 1.000000e-20