diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-14 12:21:44 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-14 12:21:44 +0000 |
commit | 9ee236f3926fa1578e9a19fbd31ab1453643b25b (patch) | |
tree | 87f623cf4d9d9f6974f9edb301690b2d3b490943 /gcc/vec.h | |
parent | 183f19932171f1560b4f33c2a57b35d189cf47be (diff) | |
download | gcc-9ee236f3926fa1578e9a19fbd31ab1453643b25b.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87490 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/vec.h')
-rw-r--r-- | gcc/vec.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/vec.h b/gcc/vec.h index d6fc8adfcea..43b7eabd9ad 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)) |