diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2008-09-10 21:13:44 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2008-09-10 14:13:44 -0700 |
commit | 5bcb0cc36879d3f65d2d78a6ff0c6383fba47dd5 (patch) | |
tree | 066893b66217c08ac620d50c46e1b629097ff8fb /gcc/fortran/expr.c | |
parent | 0b056e4e1cd78d1619605741fa760a8064260fa6 (diff) | |
download | gcc-5bcb0cc36879d3f65d2d78a6ff0c6383fba47dd5.zip gcc-5bcb0cc36879d3f65d2d78a6ff0c6383fba47dd5.tar.gz gcc-5bcb0cc36879d3f65d2d78a6ff0c6383fba47dd5.tar.bz2 |
expr.c (find_array_element): Reformat comment.
2008-09-10 H.J. Lu <hongjiu.lu@intel.com>
* expr.c (find_array_element): Reformat comment.
From-SVN: r140250
Diffstat (limited to 'gcc/fortran/expr.c')
-rw-r--r-- | gcc/fortran/expr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/fortran/expr.c b/gcc/fortran/expr.c index 6f5aff8..ba4be56 100644 --- a/gcc/fortran/expr.c +++ b/gcc/fortran/expr.c @@ -1034,7 +1034,8 @@ find_array_element (gfc_constructor *cons, gfc_array_ref *ar, cons = NULL; goto depart; } - /* Check the bounds. */ + + /* Check the bounds. */ if ((ar->as->upper[i] && ar->as->upper[i]->expr_type == EXPR_CONSTANT && mpz_cmp (e->value.integer, |