aboutsummaryrefslogtreecommitdiff
path: root/gcc/lambda-mat.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-09-05 16:05:06 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-09-05 16:05:06 +0000
commit8c27b7d4d1b35fa0d2f514a98d0524eff2278e40 (patch)
treef62d741d707e9201cb9c5b7758045bd92d649415 /gcc/lambda-mat.c
parent2a7e31df70cf600dfaa401cb426578994739bce0 (diff)
downloadgcc-8c27b7d4d1b35fa0d2f514a98d0524eff2278e40.zip
gcc-8c27b7d4d1b35fa0d2f514a98d0524eff2278e40.tar.gz
gcc-8c27b7d4d1b35fa0d2f514a98d0524eff2278e40.tar.bz2
c-common.c, [...]: Fix comment formatting.
* c-common.c, c-decl.c, combine.c, defaults.h, fold-const.c, gimplify.c, gthr-nks.h, hooks.c, lambda-code.c, lambda-mat.c, stor-layout.c, target.h, tree-cfg.c, tree-chrec.c, tree-if-conv.c, tree-inline.c, tree-into-ssa.c, tree-mudflap.c, tree-optimize.c, tree-scalar-evolution.c, tree-ssa-alias.c, tree-ssa-ccp.c, tree-ssa-dce.c, tree-ssa-pre.c, tree-vectorizer.c, tree-vectorizer.h, tree.h, vec.h: Fix comment formatting. From-SVN: r87105
Diffstat (limited to 'gcc/lambda-mat.c')
-rw-r--r--gcc/lambda-mat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/lambda-mat.c b/gcc/lambda-mat.c
index dddfd3a..4734dc2 100644
--- a/gcc/lambda-mat.c
+++ b/gcc/lambda-mat.c
@@ -155,7 +155,7 @@ lambda_matrix_get_column (lambda_matrix mat, int n, int col,
vec[i] = mat[i][col];
}
-/* Delete rows r1 to r2 (not including r2). */
+/* Delete rows r1 to r2 (not including r2). */
void
lambda_matrix_delete_rows (lambda_matrix mat, int rows, int from, int to)
@@ -463,7 +463,7 @@ lambda_matrix_hermite (lambda_matrix mat, int n,
"U.A = S". This decomposition is also known as "right Hermite".
Ref: Algorithm 2.1 page 33 in "Loop Transformations for
- Restructuring Compilers" Utpal Banerjee. */
+ Restructuring Compilers" Utpal Banerjee. */
void
lambda_matrix_right_hermite (lambda_matrix A, int m, int n,
@@ -508,7 +508,7 @@ lambda_matrix_right_hermite (lambda_matrix A, int m, int n,
V.S". This decomposition is also known as "left Hermite".
Ref: Algorithm 2.2 page 36 in "Loop Transformations for
- Restructuring Compilers" Utpal Banerjee. */
+ Restructuring Compilers" Utpal Banerjee. */
void
lambda_matrix_left_hermite (lambda_matrix A, int m, int n,