aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAldy Hernandez <aldyh@redhat.com>2002-10-31 06:57:28 +0000
committerAldy Hernandez <aldyh@gcc.gnu.org>2002-10-31 06:57:28 +0000
commit27bd7792bf18d30411e555343471183451c90418 (patch)
tree5e439f8a1138574cc0c678c2e2fd06a38b5d88fe /gcc
parenta02aa5b099b5da28ce96a3ad4e5cfb0e23b34e37 (diff)
downloadgcc-27bd7792bf18d30411e555343471183451c90418.zip
gcc-27bd7792bf18d30411e555343471183451c90418.tar.gz
gcc-27bd7792bf18d30411e555343471183451c90418.tar.bz2
c-common.c: Add GTY to vector_type_node_list.
2002-10-30 Aldy Hernandez <aldyh@redhat.com> * c-common.c: Add GTY to vector_type_node_list. From-SVN: r58666
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/c-common.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4031d7b..69c735e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2002-10-30 Aldy Hernandez <aldyh@redhat.com>
+
+ * c-common.c: Add GTY to vector_type_node_list.
+
2002-10-30 John David Anglin <dave@hiauly.hia.nrc.ca>
* pa-linux.h (ASM_OUTPUT_EXTERNAL_LIBCALL): Define.
diff --git a/gcc/c-common.c b/gcc/c-common.c
index 75c2911..286f3b0 100644
--- a/gcc/c-common.c
+++ b/gcc/c-common.c
@@ -6123,7 +6123,7 @@ handle_deprecated_attribute (node, name, args, flags, no_add_attrs)
The normal mechanism to prevent duplicates is to use type_hash_canon, but
since we want to distinguish types that are essentially identical (except
for their debug representation), we use a local list here. */
-static tree vector_type_node_list = 0;
+static GTY(()) tree vector_type_node_list = 0;
/* Handle a "vector_size" attribute; arguments as in
struct attribute_spec.handler. */