Unnormal values are a feature of some very old x87 processors. We handle
them correctly for the most part -- the only exception was an unnormal
value whose significand happened to be zero. In this case the APFloat
was still initialized as normal number (category = fcNormal), but a
subsequent toString operation would assert because the math would
produce nonsensical values for the zero significand.
This commit fixes this by initializing the APFloat to fcZero for these
numbers.
The issue was discovered because LLDB would crash when trying to print
some "long double" values.