Commit 8beaca66 by Aaron W. LaFramboise Committed by Aaron W. LaFramboise

jcf-dump.c (print_constant): Use HOST_LONG_LONG_FORMAT.

2008-05-12  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>

	* jcf-dump.c (print_constant): Use
	HOST_LONG_LONG_FORMAT.

From-SVN: r135252
parent 611a2168
2008-05-12 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
* jcf-dump.c (print_constant): Use
HOST_LONG_LONG_FORMAT.
2008-05-07 Kenneth Zadeck <zadeck@naturalbridge.com>
* decl.c (java_init_decl_processing): Change DECL_IS_PURE to
......
......@@ -850,9 +850,11 @@ print_constant (FILE *out, JCF *jcf, int index, int verbosity)
if (dnum.mantissa0 == 0 && dnum.mantissa1 == 0)
fputs ("Inf", out);
else if (dnum.mantissa0 & JDOUBLE_QNAN_MASK)
fprintf (out, "QNaN(%llu)", (unsigned long long)mantissa);
fprintf (out, "QNaN(%" HOST_LONG_LONG_FORMAT "u)",
(unsigned long long)mantissa);
else
fprintf (out, "SNaN(%llu)", (unsigned long long)mantissa);
fprintf (out, "SNaN(%" HOST_LONG_LONG_FORMAT "u)",
(unsigned long long)mantissa);
}
if (verbosity > 1)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment