public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH gfortran] PR53542 USE-associated variables shows original instead of renamed symbol name
@ 2017-07-27  8:31 Dominique d'Humières
  0 siblings, 0 replies; 2+ messages in thread
From: Dominique d'Humières @ 2017-07-27  8:31 UTC (permalink / raw)
  To: burnus; +Cc: gfortran, gcc-patches

Dear all,

I am planning to commit the following patch as obvious (once Tobias has done the debugging) unless someone objects in the coming days.

Cheers,

Dominique

2017-07-27  Dominique d'Humieres  <dominiq@lps.ens.fr>

        PR fortran/53542
        * expr.c (gfc_check_init_expr): Use the renamed name.

2017-07-27  Dominique d'Humieres  <dominiq@lps.ens.fr>

        PR testsuite/53542
        * gfortran.dg/use_30.f90: New test.

--- ../_clean/gcc/fortran/expr.c	2017-06-04 21:41:26.000000000 +0200
+++ gcc/fortran/expr.c	2017-06-25 13:07:33.000000000 +0200
@@ -2591,7 +2591,7 @@ gfc_check_init_expr (gfc_expr *e)
       else
 	gfc_error ("Parameter %qs at %L has not been declared or is "
 		   "a variable, which does not reduce to a constant "
-		   "expression", e->symtree->n.sym->name, &e->where);
+		   "expression", e->symtree->name, &e->where);
 
       break;
 
--- ../_clean/gcc/testsuite/gfortran.dg/use_30.f90	1970-01-01 01:00:00.000000000 +0100
+++ gcc/testsuite/gfortran.dg/use_30.f90	2017-04-03 15:49:13.000000000 +0200
@@ -0,0 +1,17 @@
+! { dg-do compile }
+!
+! PR53542 USE-associated variables shows original instead of renamed symbol name
+! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
+!
+module select_precision
+    integer :: dp = kind(1.0)
+end module select_precision
+
+module ode_types
+    use select_precision, only: wp => dp
+contains
+    subroutine ode_derivative(x)
+        real(wp) :: x ! { dg-error "Parameter .wp. at .1. has not been declared" }
+    end subroutine ode_derivative
+end module ode_types
+end

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH gfortran] PR53542 USE-associated variables shows original instead of renamed symbol name
@ 2017-08-01  9:05 Dominique d'Humières
  0 siblings, 0 replies; 2+ messages in thread
From: Dominique d'Humières @ 2017-08-01  9:05 UTC (permalink / raw)
  To: gfortran; +Cc: gcc-patches

Committed as revision r250762.

Dominique

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-08-01  9:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-27  8:31 [PATCH gfortran] PR53542 USE-associated variables shows original instead of renamed symbol name Dominique d'Humières
2017-08-01  9:05 Dominique d'Humières

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).