aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>2000-01-23 20:42:53 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>2000-01-23 20:42:53 +0000
commitd416576b49bf4913ad2bf187948b6bdc7e93f7a3 (patch)
treeb24ff5d4a47aa3b5881892978e96d9aa34d1cba7 /gcc
parentba793d6e429767eb37d63e2fa94ccf42a36806bd (diff)
downloadgcc-d416576b49bf4913ad2bf187948b6bdc7e93f7a3.zip
gcc-d416576b49bf4913ad2bf187948b6bdc7e93f7a3.tar.gz
gcc-d416576b49bf4913ad2bf187948b6bdc7e93f7a3.tar.bz2
(struct globals): Likewise.
From-SVN: r31574
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog1
-rw-r--r--gcc/ggc-page.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 57ae72a..72824f8 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -2,6 +2,7 @@
* ggc-page.c (struct page_entry): Make `context_depth' an
`unsigned short'.
+ (struct globals): Likewise.
2000-01-23 Clinton Popetz <cpopetz@cygnus.com>
diff --git a/gcc/ggc-page.c b/gcc/ggc-page.c
index bf28076..1d1b960 100644
--- a/gcc/ggc-page.c
+++ b/gcc/ggc-page.c
@@ -226,7 +226,7 @@ static struct globals
size_t bytes_mapped;
/* The current depth in the context stack. */
- unsigned char context_depth;
+ unsigned short context_depth;
/* A file descriptor open to /dev/zero for reading. */
#if defined (HAVE_MMAP_ANYWHERE) && !defined(MAP_ANONYMOUS)