mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-26 05:13:59 +08:00
Restore HPUX gcj bootstrap.
From-SVN: r44758
This commit is contained in:
parent
0b293f29ab
commit
ca11a2e959
@ -1,3 +1,8 @@
|
|||||||
|
2001-08-10 Anthony Green <green@redhat.com>
|
||||||
|
|
||||||
|
* java/class.c (emit_register_classes): Conditionalize code on
|
||||||
|
JCR_SECTION_NAME.
|
||||||
|
|
||||||
2001-08-10 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
|
2001-08-10 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
|
||||||
|
|
||||||
* doc/install.texi (Specific, avr): Fix cross-reference to the
|
* doc/install.texi (Specific, avr): Fix cross-reference to the
|
||||||
|
@ -1887,12 +1887,16 @@ emit_register_classes ()
|
|||||||
than the ones that come with the operating system. */
|
than the ones that come with the operating system. */
|
||||||
if (SUPPORTS_WEAK && targetm.have_named_sections)
|
if (SUPPORTS_WEAK && targetm.have_named_sections)
|
||||||
{
|
{
|
||||||
|
#ifdef JCR_SECTION_NAME
|
||||||
tree t;
|
tree t;
|
||||||
named_section_flags (JCR_SECTION_NAME, SECTION_WRITE,
|
named_section_flags (JCR_SECTION_NAME, SECTION_WRITE,
|
||||||
POINTER_SIZE / BITS_PER_UNIT);
|
POINTER_SIZE / BITS_PER_UNIT);
|
||||||
for (t = registered_class; t; t = TREE_CHAIN (t))
|
for (t = registered_class; t; t = TREE_CHAIN (t))
|
||||||
assemble_integer (XEXP (DECL_RTL (t), 0),
|
assemble_integer (XEXP (DECL_RTL (t), 0),
|
||||||
POINTER_SIZE / BITS_PER_UNIT, 1);
|
POINTER_SIZE / BITS_PER_UNIT, 1);
|
||||||
|
#else
|
||||||
|
abort ();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user