diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-09-25 14:36:40 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-09-25 14:36:40 +0000 |
commit | ea4b78487cb4fa983c3bfa1f921c3b04f2fded93 (patch) | |
tree | 5867ad91eef65934da4de107a8e9e80facc6cfd6 /gcc/lambda-mat.c | |
parent | e75220c8ced33002009c5c9aa43a6db9015c9f50 (diff) | |
download | gcc-ea4b78487cb4fa983c3bfa1f921c3b04f2fded93.zip gcc-ea4b78487cb4fa983c3bfa1f921c3b04f2fded93.tar.gz gcc-ea4b78487cb4fa983c3bfa1f921c3b04f2fded93.tar.bz2 |
c-typeck.c, [...]: Fix comment formatting.
* c-typeck.c, defaults.h, dwarf.h, dwarf2out.c, fold-const.c,
gthr-dce.h, gthr-posix.h, gthr-solaris.h, gthr-win32.h,
lambda-code.c, lambda-mat.c, libgcc2.c, stmt.c,
tree-ssa-pre.c, tree-vn.c, tree.h: Fix comment formatting.
From-SVN: r88102
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 8f4cbd0..8aa3c12 100644 --- a/gcc/lambda-mat.c +++ b/gcc/lambda-mat.c @@ -602,9 +602,9 @@ lambda_matrix_project_to_null (lambda_matrix B, int rowsize, lambda_matrix M1, M2, M3, I; int determinant; - /* compute c(I-B^T inv(B B^T) B) e sub k */ + /* Compute c(I-B^T inv(B B^T) B) e sub k. */ - /* M1 is the transpose of B */ + /* M1 is the transpose of B. */ M1 = lambda_matrix_new (colsize, colsize); lambda_matrix_transpose (B, M1, rowsize, colsize); |