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/lambda-mat.c | |
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/lambda-mat.c')
-rw-r--r-- | gcc/lambda-mat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/lambda-mat.c b/gcc/lambda-mat.c index 4734dc297b8..16fd65eb4d7 100644 --- a/gcc/lambda-mat.c +++ b/gcc/lambda-mat.c @@ -441,7 +441,7 @@ lambda_matrix_hermite (lambda_matrix mat, int n, } } - /* Stop when only the diagonal element is non-zero. */ + /* Stop when only the diagonal element is nonzero. */ while (lambda_vector_first_nz (row, n, j + 1) < n) { minimum_col = lambda_vector_min_nz (row, n, j); @@ -548,7 +548,7 @@ lambda_matrix_left_hermite (lambda_matrix A, int m, int n, } } -/* When it exists, return the first non-zero row in MAT after row +/* When it exists, return the first nonzero row in MAT after row STARTROW. Otherwise return rowsize. */ int |