This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[applied mips patch] fix GTY marker
- From: cgd at broadcom dot com
- To: gcc-patches at gcc dot gnu dot org
- Date: 03 Jun 2004 17:37:44 -0700
- Subject: [applied mips patch] fix GTY marker
before this, a build for mips targets (e.g. sb1-elf) would fail w/ the
stray GTY marker error.
after, it gets further. (my build/check isn't done yet, but this
fixes that particular compile error, and seems consistent with other
usage of GTY markers in the file.)
checked in as obvious.
chris
--
2004-06-03 Chris Demetriou <cgd@broadcom.com>
* config/mips/mips.c (struct irix_section_align_entry): Fix
GTY marker.
Index: config/mips/mips.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/mips/mips.c,v
retrieving revision 1.416
diff -u -p -r1.416 mips.c
--- config/mips/mips.c 22 May 2004 19:33:17 -0000 1.416
+++ config/mips/mips.c 4 Jun 2004 00:34:35 -0000
@@ -10018,7 +10018,7 @@ irix_asm_named_section (const char *name
/* In addition to emitting a .align directive, record the maximum
alignment requested for the current section. */
-struct GTY (()) irix_section_align_entry
+struct irix_section_align_entry GTY (())
{
const char *name;
unsigned int log;