aboutsummaryrefslogtreecommitdiff
path: root/gcc/vec.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-09-14 12:21:44 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-09-14 12:21:44 +0000
commit8e3c61c5775fabd1e49fb3d4e80ea4a9cb0ab24c (patch)
tree87f623cf4d9d9f6974f9edb301690b2d3b490943 /gcc/vec.h
parent0e40b5f29a85e04a5243db74bfc63e3935361645 (diff)
downloadgcc-8e3c61c5775fabd1e49fb3d4e80ea4a9cb0ab24c.zip
gcc-8e3c61c5775fabd1e49fb3d4e80ea4a9cb0ab24c.tar.gz
gcc-8e3c61c5775fabd1e49fb3d4e80ea4a9cb0ab24c.tar.bz2
cgraph.h, [...]: Fix comment typos.
* cgraph.h, cgraphunit.c, fold-const.c, lambda-mat.c, lambda.h, profile.c, tree-optimize.c, tree-sra.c, vec.h: Fix comment typos. Follow spelling conventions. From-SVN: r87490
Diffstat (limited to 'gcc/vec.h')
-rw-r--r--gcc/vec.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/vec.h b/gcc/vec.h
index d6fc8ad..43b7eab 100644
--- a/gcc/vec.h
+++ b/gcc/vec.h
@@ -186,11 +186,11 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
int VEC_T_space (VEC(T) *v,int reserve)
- If V has space for RESERVE additional entries, return non-zero. If
+ If V has space for RESERVE additional entries, return nonzero. If
RESERVE is < 0, ensure there is at least one space slot. You
usually only need to use this if you are doing your own vector
reallocation, for instance on an embedded vector. This returns
- non-zero in exactly the same circumstances that VEC_T_reserve
+ nonzero in exactly the same circumstances that VEC_T_reserve
will. */
#define VEC_space(TDEF,V,R) (VEC_OP(TDEF,space)(V,R))
@@ -203,7 +203,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
slot. These differ in their reallocation behaviour, the first will
not create additional headroom, but the second mechanism will
perform the usual exponential headroom increase. Note this can
- cause V to be reallocated. Returns non-zero iff reallocation
+ cause V to be reallocated. Returns nonzero iff reallocation
actually occurred. */
#define VEC_reserve(TDEF,V,R) (VEC_OP(TDEF,reserve)(&(V),R MEM_STAT_INFO))