aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGeoffrey Keating <geoffk@apple.com>2003-06-10 18:58:05 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2003-06-10 18:58:05 +0000
commit21c157b435ad936b09c2ed7271fe2c7484eeab1c (patch)
tree6049a88cdaa238d9f5dfcf12d388620777e087c1 /gcc
parente32bac5bd603a3ff3b979fe010c26e40e9b72e65 (diff)
downloadgcc-21c157b435ad936b09c2ed7271fe2c7484eeab1c.zip
gcc-21c157b435ad936b09c2ed7271fe2c7484eeab1c.tar.gz
gcc-21c157b435ad936b09c2ed7271fe2c7484eeab1c.tar.bz2
* except.c (call_site_base): Mark with GTY.
From-SVN: r67722
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/except.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 1bba247..a05229e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2003-06-10 Geoffrey Keating <geoffk@apple.com>
+
+ * except.c (call_site_base): Mark with GTY.
+
2003-06-10 Richard Earnshaw <rearnsha@arm.com>
* arm-proto.h: Convert to ISO C90 prototypes.
diff --git a/gcc/except.c b/gcc/except.c
index 7571441..28b8efe 100644
--- a/gcc/except.c
+++ b/gcc/except.c
@@ -102,7 +102,7 @@ struct ehl_map_entry GTY(())
struct eh_region *region;
};
-static int call_site_base;
+static GTY(()) int call_site_base;
static GTY ((param_is (union tree_node)))
htab_t type_to_runtime_map;