Commit 262555e2 by Richard Stallman

(init_rtl): Correct number of 'w's in CONST_DOUBLE format.

From-SVN: r4490
parent 910578a8
...@@ -800,8 +800,9 @@ init_rtl () ...@@ -800,8 +800,9 @@ init_rtl ()
*s++ = 'e'; *s++ = 'e';
*s++ = '0'; *s++ = '0';
/* Set the GET_RTX_FORMAT of CONST_DOUBLE to a string /* Set the GET_RTX_FORMAT of CONST_DOUBLE to a string
of as many `i's as we now have elements. */ of as many `w's as we now have elements. Subtract two from
for (i = 0; i < rtx_length[(int) CONST_DOUBLE]; i++) the size to account for the 'e' and the '0'. */
for (i = 2; i < rtx_length[(int) CONST_DOUBLE]; i++)
*s++ = 'w'; *s++ = 'w';
*s++ = 0; *s++ = 0;
} }
......
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