2016_10-06 Louis Krupp <louis.krupp@zoho.com>
authorLouis Krupp <louis.krupp@zoho.com>
Fri, 7 Oct 2016 02:02:13 +0000 (02:02 +0000)
committerLouis Krupp <lkrupp@gcc.gnu.org>
Fri, 7 Oct 2016 02:02:13 +0000 (02:02 +0000)
PR fortran/57910
* gfortran.dg/pr57910.f90: New test.

2016-10-05  Louis Krupp  <louis.krupp@zoho.com>

PR fortran/57910
* trans-expr.c (gfc_add_interface_mapping): Don't try to
dereference call-by-value scalar argument

From-SVN: r240850

gcc/fortran/ChangeLog
gcc/fortran/trans-expr.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/pr57910.f90 [new file with mode: 0644]

index 2bab7b3110b8e0fbebecc43b4a7ff9eff663edc9..874779b92dd0fc49ff9b0075e75784c136b8a6e8 100644 (file)
@@ -1,3 +1,9 @@
+2016-10-05  Louis Krupp  <louis.krupp@zoho.com>
+
+       PR fortran/57910
+       * trans-expr.c (gfc_add_interface_mapping): Don't try to
+       dereference call-by-value scalar argument
+
 2016-10-05  Steven G. Kargl  <kargls@gcc.gnu.org>
 
        PR fortran/58991
index a82178835ac112d6dc7b28cbaf384cdda84e1f07..1de2818a6b203b9c7eeb597079ce2b7922f2e61b 100644 (file)
@@ -4009,6 +4009,10 @@ gfc_add_interface_mapping (gfc_interface_mapping * mapping,
   if (sym->attr.flavor == FL_PROCEDURE)
     value = se->expr;
 
+  /* If the argument is a pass-by-value scalar, use the value as is.  */
+  else if (!sym->attr.dimension && sym->attr.value)
+    value = se->expr;
+
   /* If the argument is either a string or a pointer to a string,
      convert it to a boundless character type.  */
   else if (!sym->attr.dimension && sym->ts.type == BT_CHARACTER)
index 9aee1b289eac8c19d9f805007a5f2cee07d3f108..18c1a17242fbf3f054cd971b2ebfbac6210a8fbc 100644 (file)
@@ -1,3 +1,8 @@
+2016_10-06  Louis Krupp  <louis.krupp@zoho.com>
+
+       PR fortran/57910
+       * gfortran.dg/pr57910.f90: New test.
+
 2016-10-06  Jakub Jelinek  <jakub@redhat.com>
 
        * g++.dg/cpp1z/has-unique-obj-representations1.C: New test.
diff --git a/gcc/testsuite/gfortran.dg/pr57910.f90 b/gcc/testsuite/gfortran.dg/pr57910.f90
new file mode 100644 (file)
index 0000000..c3666a6
--- /dev/null
@@ -0,0 +1,26 @@
+! { dg-do run }
+program strtest
+
+  implicit none
+
+  character(len=:), allocatable:: my_str
+
+  integer, parameter :: slen_init = 7
+  integer :: slen = slen_init
+
+  my_str = fstr(slen)
+  if (slen /= slen_init .or. len(my_str) /= slen .or. my_str /= ' ') then
+    call abort
+  endif
+
+contains
+
+  function fstr(strlen)
+    integer, value :: strlen
+    character(len=strlen)::fstr
+
+    strlen = 17  ! Make sure strlen was really passed by value
+    fstr = ' '
+  end function fstr
+
+end program strtest