aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;