From: Steven G. Kargl Date: Sun, 20 Feb 2005 18:26:19 +0000 (+0000) Subject: * expr.c (gfc_type_convert_binary): Typo in comment. X-Git-Tag: releases/gcc-4.0.0~718 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=687fcae70cd9ae3ef90dc838738ed5ccca46591d;p=thirdparty%2Fgcc.git * expr.c (gfc_type_convert_binary): Typo in comment. From-SVN: r95307 --- diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index dea285b397cd..acd8b69c93d6 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,7 @@ +2005-02-20 Steven G. Kargl + + * expr.c (gfc_type_convert_binary): Typo in comment. + 2005-02-19 Steven G. Kargl * check.c (gfc_check_selected_int_kind): New function. diff --git a/gcc/fortran/expr.c b/gcc/fortran/expr.c index 3898f7afd636..7231fab1e4f4 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;