diff options
author | Brooks Moses <brooks.moses@codesourcery.com> | 2006-11-10 03:38:43 +0000 |
---|---|---|
committer | Brooks Moses <brooks@gcc.gnu.org> | 2006-11-09 19:38:43 -0800 |
commit | f5bf550c9dc6510b4f89262d767a37c2966786ed (patch) | |
tree | c32e16509adb84c90c0a2c1ada7aa9039261909b /gcc | |
parent | 9fac74620f9c013bf5141d638a525481b7820b52 (diff) | |
download | gcc-f5bf550c9dc6510b4f89262d767a37c2966786ed.zip gcc-f5bf550c9dc6510b4f89262d767a37c2966786ed.tar.gz gcc-f5bf550c9dc6510b4f89262d767a37c2966786ed.tar.bz2 |
* check.c (same_type_check): Typo fix in comment.
From-SVN: r118647
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/fortran/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/fortran/check.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 76a31a6..d756df3 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,7 @@ +2006-11-09 Brooks Moses <brooks.moses@codesourcery.com> + + * check.c (same_type_check): Typo fix in comment. + 2006-11-09 Paul Thomas <pault@gcc.gnu.org> PR fortran/29431 diff --git a/gcc/fortran/check.c b/gcc/fortran/check.c index fdbd003..f8983bd 100644 --- a/gcc/fortran/check.c +++ b/gcc/fortran/check.c @@ -199,7 +199,7 @@ scalar_check (gfc_expr * e, int n) } -/* Make sure two expression have the same type. */ +/* Make sure two expressions have the same type. */ static try same_type_check (gfc_expr * e, int n, gfc_expr * f, int m) |