From: Daniel Franke Date: Tue, 19 Feb 2008 18:26:12 +0000 (-0500) Subject: re PR fortran/35030 (add type/kind information to pointer assignments) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=606c2c03b0390730c23471b51e821270c3a7001e;p=gcc.git re PR fortran/35030 (add type/kind information to pointer assignments) 2008-02-19 Daniel Franke PR fortran/35030 * expr.c (gfc_check_pointer_assign): Add type and kind information to type-mismatch message. (gfc_check_assign): Unify error messages. From-SVN: r132442 --- diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index c23b81f5e30..ea74958f3f9 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,10 @@ +2008-02-19 Daniel Franke + + PR fortran/35030 + * expr.c (gfc_check_pointer_assign): Add type and kind information + to type-mismatch message. + (gfc_check_assign): Unify error messages. + 2008-02-16 Francois-Xavier Coudert PR fortran/34952 @@ -18,7 +25,7 @@ 2008-02-10 Daniel Franke - fortran/PR35019 + PR fortran/35019 * lang.opt: Allow '-J' next to '-J ', likewise '-I ' and '-I'. diff --git a/gcc/fortran/expr.c b/gcc/fortran/expr.c index ac159f5ce6c..bfb61fdf6a8 100644 --- a/gcc/fortran/expr.c +++ b/gcc/fortran/expr.c @@ -2825,8 +2825,8 @@ gfc_check_assign (gfc_expr *lvalue, gfc_expr *rvalue, int conform) if (lvalue->ts.type == BT_LOGICAL && rvalue->ts.type == BT_LOGICAL) return SUCCESS; - gfc_error ("Incompatible types in assignment at %L, %s to %s", - &rvalue->where, gfc_typename (&rvalue->ts), + gfc_error ("Incompatible types in assignment at %L; attempted assignment " + "of %s to %s", &rvalue->where, gfc_typename (&rvalue->ts), gfc_typename (&lvalue->ts)); return FAILURE; @@ -2909,8 +2909,9 @@ gfc_check_pointer_assign (gfc_expr *lvalue, gfc_expr *rvalue) if (!gfc_compare_types (&lvalue->ts, &rvalue->ts)) { - gfc_error ("Different types in pointer assignment at %L", - &lvalue->where); + gfc_error ("Different types in pointer assignment at %L; attempted " + "assignment of %s to %s", &lvalue->where, + gfc_typename (&rvalue->ts), gfc_typename (&lvalue->ts)); return FAILURE; }