correct comment in ggc-page.c
Jim Wilson
wilson@specifixinc.com
Thu Dec 4 05:41:00 GMT 2003
This relates to a thread that occured in July that I forgot to follow up on
http://gcc.gnu.org/ml/gcc-patches/2003-07/msg01536.html
There was a patch that changed RTL_SIZE (10) to RTL_SIZE (9) to improve
memory usage for INSN. However, CALL_INSN and JUMP_INSN are RTL_SIZE (10),
and hence the comment is now incorrect. It was decided to fix the comment.
Since this is only a comment change, this was just tested with an
--enable-languages=c bootstrap on an x86 linux system.
2003-12-03 James E Wilson <wilson@specifixinc.com>
* gcc-page.c (extra_order_size_tab): Correct comment.
Index: ggc-page.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/ggc-page.c,v
retrieving revision 1.82
diff -p -r1.82 ggc-page.c
*** ggc-page.c 1 Dec 2003 22:59:29 -0000 1.82
--- ggc-page.c 4 Dec 2003 05:00:23 -0000
*************** static const size_t extra_order_size_tab
*** 187,193 ****
sizeof (struct tree_list),
TREE_EXP_SIZE (2),
RTL_SIZE (2), /* MEM, PLUS, etc. */
! RTL_SIZE (9), /* INSN, CALL_INSN, JUMP_INSN */
};
/* The total number of orders. */
--- 187,193 ----
sizeof (struct tree_list),
TREE_EXP_SIZE (2),
RTL_SIZE (2), /* MEM, PLUS, etc. */
! RTL_SIZE (9), /* INSN */
};
/* The total number of orders. */
--
Jim Wilson, GNU Tools Support, http://www.SpecifixInc.com
More information about the Gcc-patches
mailing list