aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Vehreschild <vehre@gcc.gnu.org>2017-10-28 14:10:59 +0200
committerAndre Vehreschild <vehre@gcc.gnu.org>2017-10-28 14:10:59 +0200
commit5ce15f69d23ff9ccd2a597a6a676de43acf531bd (patch)
tree8cd0d21c34ecc1a9f621dd0b86c7a4f2243ac246
parent575b527e5798ecbf5d36974bae2c87974019fefd (diff)
downloadgcc-5ce15f69d23ff9ccd2a597a6a676de43acf531bd.zip
gcc-5ce15f69d23ff9ccd2a597a6a676de43acf531bd.tar.gz
gcc-5ce15f69d23ff9ccd2a597a6a676de43acf531bd.tar.bz2
check.c (gfc_check_co_reduce): Clarify error message.
gcc/fortran/ChangeLog: 2017-10-28 Andre Vehreschild <vehre@gcc.gnu.org> * check.c (gfc_check_co_reduce): Clarify error message. From-SVN: r254197
-rw-r--r--gcc/fortran/ChangeLog4
-rw-r--r--gcc/fortran/check.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 7ad2427..307abe6 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,7 @@
+2017-10-28 Andre Vehreschild <vehre@gcc.gnu.org>
+
+ * check.c (gfc_check_co_reduce): Clarify error message.
+
2017-10-28 Paul Thomas <pault@gcc.gnu.org>
PR fortran/81758
diff --git a/gcc/fortran/check.c b/gcc/fortran/check.c
index 681950e..759c15a 100644
--- a/gcc/fortran/check.c
+++ b/gcc/fortran/check.c
@@ -1731,7 +1731,7 @@ gfc_check_co_reduce (gfc_expr *a, gfc_expr *op, gfc_expr *result_image,
if (!gfc_compare_types (&a->ts, &sym->result->ts))
{
- gfc_error ("A argument at %L has type %s but the function passed as "
+ gfc_error ("The A argument at %L has type %s but the function passed as "
"OPERATOR at %L returns %s",
&a->where, gfc_typename (&a->ts), &op->where,
gfc_typename (&sym->result->ts));