This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [Bug c++/8861] PATCH: mangling floating point literal intemplate arg expression
Richard Henderson <rth@redhat.com> writes:
> On Sun, Jun 08, 2003 at 11:13:15AM -0700, Zack Weinberg wrote:
>> + for (i = 0; i < words; i++)
>> + {
>> + sprintf (buffer, "%08lx", target_real[i]);
>> + write_chars (buffer, 8);
>
> If leading zeros are to be removed, then __DENORM_MIN__ should
> be "1", not "00000001".
It says "fixed length", so I was assuming leading zeroes were _not_ to
be removed.
zw