aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcov-io.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2001-10-09 14:03:13 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2001-10-09 14:03:13 +0000
commit2ba84f36eaafd1d53db407e775fff7a286efe004 (patch)
tree2bca05f2ef10d55e4d51ec6066c42bb45253a03c /gcc/gcov-io.h
parent77332b4e0b7f45f1cbba6b624765fa041c85efa7 (diff)
downloadgcc-2ba84f36eaafd1d53db407e775fff7a286efe004.zip
gcc-2ba84f36eaafd1d53db407e775fff7a286efe004.tar.gz
gcc-2ba84f36eaafd1d53db407e775fff7a286efe004.tar.bz2
c-common.h: Fix comment formatting.
* c-common.h: Fix comment formatting. * c-dump.c: Likewise. * cfg.c: Likewise. * diagnostic.h: Likewise. * except.c: Likewise. * gcc.h: Likewise. * gcov-io.h: Likewise. * genattrtab.c: Likewise. * output.h: Likewise. * predict.h: Likewise. * reload1.c: Likewise. * reload.h: Likewise. * resource.h: Likewise. * scan.h: Likewise. * system.h: Likewise. * tree.h: Likewise. * tree-inline.c: Likewise. * tsystem.h: Likewise. * varasm.c: Likewise. * xcoffout.h: Likewise. From-SVN: r46122
Diffstat (limited to 'gcc/gcov-io.h')
-rw-r--r--gcc/gcov-io.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/gcov-io.h b/gcc/gcov-io.h
index be83ad9..7352429 100644
--- a/gcc/gcov-io.h
+++ b/gcc/gcov-io.h
@@ -32,11 +32,11 @@ static int __store_gcov_type PARAMS ((gcov_type, char *, size_t)) ATTRIBUTE_UNUS
static int __read_gcov_type PARAMS ((gcov_type *, FILE *, size_t)) ATTRIBUTE_UNUSED;
static int __write_gcov_type PARAMS ((gcov_type, FILE *, size_t)) ATTRIBUTE_UNUSED;
-/* These routines only work for signed values. */
+/* These routines only work for signed values. */
/* Store a portable representation of VALUE in DEST using BYTES*8-1 bits.
Return a non-zero value if VALUE requires more than BYTES*8-1 bits
- to store. */
+ to store. */
static int
__store_gcov_type (value, dest, bytes)
@@ -71,7 +71,7 @@ __store_gcov_type (value, dest, bytes)
/* Retrieve a quantity containing BYTES*8-1 bits from SOURCE and store
the result in DEST. Returns a non-zero value if the value in SOURCE
- will not fit in DEST. */
+ will not fit in DEST. */
static int
__fetch_gcov_type (dest, source, bytes)
@@ -126,7 +126,7 @@ __fetch_long (dest, source, bytes)
Note that VALUE may not actually be large enough to hold BYTES*8
bits, but BYTES characters will be written anyway.
- BYTES may be a maximum of 10. */
+ BYTES may be a maximum of 10. */
static int
__write_gcov_type (value, file, bytes)
@@ -163,7 +163,7 @@ __write_long (value, file, bytes)
Note that DEST may not be large enough to hold all of the requested
data, but the function will read BYTES characters anyway.
- BYTES may be a maximum of 10. */
+ BYTES may be a maximum of 10. */
static int
__read_gcov_type (dest, file, bytes)