diff options
author | Steven G. Kargl <kargls@comcast.net> | 2005-02-20 18:26:19 +0000 |
---|---|---|
committer | Steven G. Kargl <kargl@gcc.gnu.org> | 2005-02-20 18:26:19 +0000 |
commit | 687fcae70cd9ae3ef90dc838738ed5ccca46591d (patch) | |
tree | db80f8f898b497eb0ad14854e78d5cead41a6389 /gcc | |
parent | cdcb88d72f7121a7e382ebdea557f0d641daf1b6 (diff) | |
download | gcc-687fcae70cd9ae3ef90dc838738ed5ccca46591d.zip gcc-687fcae70cd9ae3ef90dc838738ed5ccca46591d.tar.gz gcc-687fcae70cd9ae3ef90dc838738ed5ccca46591d.tar.bz2 |
* expr.c (gfc_type_convert_binary): Typo in comment.
From-SVN: r95307
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/fortran/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/fortran/expr.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index dea285b..acd8b69 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,7 @@ +2005-02-20 Steven G. Kargl <kargls@comcast.net> + + * expr.c (gfc_type_convert_binary): Typo in comment. + 2005-02-19 Steven G. Kargl <kargls@comcast.net> * check.c (gfc_check_selected_int_kind): New function. diff --git a/gcc/fortran/expr.c b/gcc/fortran/expr.c index 3898f7a..7231fab 100644 --- a/gcc/fortran/expr.c +++ b/gcc/fortran/expr.c @@ -618,7 +618,7 @@ gfc_type_convert_binary (gfc_expr * e) { e->ts = op1->ts; - /* Special cose for ** operator. */ + /* Special case for ** operator. */ if (e->operator == INTRINSIC_POWER) goto done; |