Commit e83cb5f0 by Roman Zippel Committed by Richard Henderson

* toplev.c (lang_independent_init): Round up identifier size.

From-SVN: r49291
parent 5721cd84
2002-01-28 Roman Zippel <zippel@linux-m68k.org>
* toplev.c (lang_independent_init): Round up identifier size.
2002-01-28 Richard Earnshaw <rearnsha@arm.com> 2002-01-28 Richard Earnshaw <rearnsha@arm.com>
* config.gcc: Revert previous change. * config.gcc: Revert previous change.
......
...@@ -5012,8 +5012,8 @@ lang_independent_init () ...@@ -5012,8 +5012,8 @@ lang_independent_init ()
/* Set the language-dependent identifier size. */ /* Set the language-dependent identifier size. */
tree_code_length[(int) IDENTIFIER_NODE] tree_code_length[(int) IDENTIFIER_NODE]
= ((lang_hooks.identifier_size - sizeof (struct tree_common)) = ((lang_hooks.identifier_size - sizeof (struct tree_common)
/ sizeof (tree)); + sizeof (tree) - 1) / sizeof (tree));
/* Initialize the garbage-collector, and string pools. */ /* Initialize the garbage-collector, and string pools. */
init_ggc (); init_ggc ();
......
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