aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-sra.c
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/tree-sra.c
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/tree-sra.c')
-rw-r--r--gcc/tree-sra.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-sra.c b/gcc/tree-sra.c
index cde865a..4ebc061 100644
--- a/gcc/tree-sra.c
+++ b/gcc/tree-sra.c
@@ -182,7 +182,7 @@ type_can_be_decomposed_p (tree type)
if (bitmap_bit_p (sra_type_decomp_cache, cache+1))
return false;
- /* The type must have a definite non-zero size. */
+ /* The type must have a definite nonzero size. */
if (TYPE_SIZE (type) == NULL || integer_zerop (TYPE_SIZE (type)))
goto fail;