diff options
author | Chris Demetriou <cgd@broadcom.com> | 2004-06-04 00:37:56 +0000 |
---|---|---|
committer | Chris Demetriou <cgd@gcc.gnu.org> | 2004-06-03 17:37:56 -0700 |
commit | c759d454325f974380284ac54d342705e95e70d2 (patch) | |
tree | c009b64715ab4e6b255637ee11e436e6f8441b2f | |
parent | 1b6be71988fb76de4935ceb76ffb8812b8e56650 (diff) | |
download | gcc-c759d454325f974380284ac54d342705e95e70d2.zip gcc-c759d454325f974380284ac54d342705e95e70d2.tar.gz gcc-c759d454325f974380284ac54d342705e95e70d2.tar.bz2 |
mips.c (struct irix_section_align_entry): Fix GTY marker.
2004-06-03 Chris Demetriou <cgd@broadcom.com>
* config/mips/mips.c (struct irix_section_align_entry): Fix
GTY marker.
From-SVN: r82618
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mips/mips.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index db1d4f8f..7771f78 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-06-03 Chris Demetriou <cgd@broadcom.com> + + * config/mips/mips.c (struct irix_section_align_entry): Fix + GTY marker. + 2004-06-03 Geoffrey Keating <geoffk@apple.com> * toplev.c (check_global_declarations): Don't ask for diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index f63c92f..9abd0b3 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -10018,7 +10018,7 @@ irix_asm_named_section (const char *name, unsigned int flags) /* 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; |