summaryrefslogtreecommitdiff
path: root/gcc/ggc-page.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-12 23:40:53 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-12 23:40:53 +0000
commitaa40f56162c529feae5e13986bf6c46cf9b39245 (patch)
treef8425171fd5a2b92510be46813648f3e6a1d9f61 /gcc/ggc-page.c
parentfb0df687d6dae20c622958b0203f1d5390996ed2 (diff)
downloadgcc-aa40f56162c529feae5e13986bf6c46cf9b39245.tar.gz
* gcc.c: Fix comment formatting.
* gccspec.c: Likewise. * gcov.c: Likewise. * gcse.c: Likewise. * genemit.c: Likewise. * gengenrtl.c: Likewise. * genrecog.c: Likewise. * gensupport.c: Likewise. * ggc-page.c: Likewise. * global.c: Likewise. * graph.c: Likewise. * ifcvt.c: Likewise. * integrate.c: Likewise. * lcm.c: Likewise. * libgcc2.c: Likewise. * loop.c: Likewise. * mbchar.c: Likewise. * optabs.c: Likewise. * predict.c: Likewise. * prefix.c: Likewise. * profile.c: Likewise. * protoize.c: Likewise. * real.c: Likewise. * recog.c: Likewise. * regclass.c: Likewise. * regmove.c: Likewise. * reg-stack.c: Likewise. * reload1.c: Likewise. * resource.c: Likewise. * rtlanal.c: Likewise. * rtl.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44837 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ggc-page.c')
-rw-r--r--gcc/ggc-page.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ggc-page.c b/gcc/ggc-page.c
index df49b5709e3..09a4ff99ec7 100644
--- a/gcc/ggc-page.c
+++ b/gcc/ggc-page.c
@@ -592,7 +592,7 @@ alloc_page (order)
if (p != NULL)
{
- /* Recycle the allocated memory from this page ... */
+ /* Recycle the allocated memory from this page ... */
*pp = p->next;
page = p->page;
@@ -987,7 +987,7 @@ ggc_set_mark (p)
word = bit / HOST_BITS_PER_LONG;
mask = (unsigned long) 1 << (bit % HOST_BITS_PER_LONG);
- /* If the bit was previously set, skip it. */
+ /* If the bit was previously set, skip it. */
if (entry->in_use_p[word] & mask)
return 1;
@@ -1053,7 +1053,7 @@ init_ggc ()
abort ();
}
- /* We have a good page, might as well hold onto it... */
+ /* We have a good page, might as well hold onto it... */
e = (struct page_entry *) xcalloc (1, sizeof (struct page_entry));
e->bytes = G.pagesize;
e->page = p;