aboutsummaryrefslogtreecommitdiff
path: root/gcc/ggc-page.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-10-05 13:09:48 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-10-05 13:09:48 +0000
commit0ee55ad88a745b42dc1466c5ae6360f83ba3c628 (patch)
treee7252e6b30d0314c0a91a10384c241b692dfaf01 /gcc/ggc-page.c
parent35222de242df6eb8698fda53c711915914639f68 (diff)
downloadgcc-0ee55ad88a745b42dc1466c5ae6360f83ba3c628.zip
gcc-0ee55ad88a745b42dc1466c5ae6360f83ba3c628.tar.gz
gcc-0ee55ad88a745b42dc1466c5ae6360f83ba3c628.tar.bz2
c-pretty-print.c: Fix comment formatting.
* c-pretty-print.c: Fix comment formatting. * cfglayout.c: Likewise. * cfgloopanal.c: Likewise. * cppcharset.c: Likewise. * dbxout.c: Likewise. * ggc-page.c: Likewise. * ggc.h: Likewise. * target.h: Likewise. From-SVN: r72110
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 e507de6..ed164e9 100644
--- a/gcc/ggc-page.c
+++ b/gcc/ggc-page.c
@@ -1984,7 +1984,7 @@ ggc_pch_write_object (struct ggc_pch_data *d ATTRIBUTE_UNUSED,
fatal_error ("can't write PCH file: %m");
/* If SIZE is not the same as OBJECT_SIZE(order), then we need to pad the
- object out to OBJECT_SIZE(order). This happens for strings. */
+ object out to OBJECT_SIZE(order). This happens for strings. */
if (size != OBJECT_SIZE (order))
{
@@ -1994,7 +1994,7 @@ ggc_pch_write_object (struct ggc_pch_data *d ATTRIBUTE_UNUSED,
than most padding requests as the source for our null bytes. This
permits us to do the padding with fwrite() rather than fseek(), and
limits the chance the the OS may try to flush any outstanding
- writes. */
+ writes. */
if (padding <= sizeof(emptyBytes))
{
if (fwrite (emptyBytes, 1, padding, f) != padding)
@@ -2002,7 +2002,7 @@ ggc_pch_write_object (struct ggc_pch_data *d ATTRIBUTE_UNUSED,
}
else
{
- /* Larger than our buffer? Just default to fseek. */
+ /* Larger than our buffer? Just default to fseek. */
if (fseek (f, padding, SEEK_CUR) != 0)
fatal_error ("can't write PCH file");
}