public inbox for fortran@gcc.gnu.org
 help / color / mirror / Atom feed
* [Patch, fortran] PR70149 - [F08] Character pointer initialization causes ICE
@ 2018-09-25 16:43 Paul Richard Thomas
  2018-09-25 18:36 ` Janne Blomqvist
  0 siblings, 1 reply; 2+ messages in thread
From: Paul Richard Thomas @ 2018-09-25 16:43 UTC (permalink / raw)
  To: fortran, gcc-patches

[-- Attachment #1: Type: text/plain, Size: 559 bytes --]

This is yet another deferred length character bug. The fix speaks for
itself. I'll dream up a more suitable name for the testcase before
committing.

Bootstraps and regtests on FC21/x86_64 - OK for trunk and 8-branch?

Paul

2018-09-25  Paul Thomas  <pault@gcc.gnu.org>

    PR fortran/70149
    * trans-decl.c (gfc_get_symbol_decl): A deferred character
    length pointer that is initialized needs the string length to
    be initialized as well.

2018-09-25  Paul Thomas  <pault@gcc.gnu.org>

    PR fortran/70149
    * gfortran.dg/pr70149.f90 : New test.

[-- Attachment #2: submit.diff --]
[-- Type: text/x-patch, Size: 757 bytes --]

diff --git a/gcc/fortran/trans-decl.c b/gcc/fortran/trans-decl.c
index 159c3dbb..f7568d5 100644
--- a/gcc/fortran/trans-decl.c
+++ b/gcc/fortran/trans-decl.c
@@ -1759,7 +1759,17 @@ gfc_get_symbol_decl (gfc_symbol * sym)
       && TREE_CODE (sym->ts.u.cl->backend_decl) != INDIRECT_REF)
     {
       gfc_finish_var_decl (length, sym);
-      gcc_assert (!sym->value);
+      if (!sym->attr.associate_var
+	  && TREE_CODE (length) == VAR_DECL
+	  && sym->value && sym->value->ts.u.cl->length)
+	{
+	  gfc_expr *len = sym->value->ts.u.cl->length;
+	  DECL_INITIAL (length) = gfc_conv_initializer (len, &len->ts,
+							TREE_TYPE (length),
+							false, false, false);
+	}
+      else
+	gcc_assert (!sym->value);
     }
 
   gfc_finish_var_decl (decl, sym);

[-- Attachment #3: pr70149.f90 --]
[-- Type: text/x-fortran, Size: 529 bytes --]

! { dg-do run }
!
! Test the fix for PR70149 in which the string length for
! 'number_string' was not initialized.
!
! Contributed by Walter Spector  <w6ws@earthlink.net>
!
module myptr_mod
  implicit none

  integer, target, save :: int_data = 42
  character(16), target, save :: char_data = 'forty two'

  integer, pointer :: number => int_data
  character(:), pointer :: number_string => char_data

end module

  use myptr_mod
  if (LEN (number_string) .ne. 16) stop 1
  if (trim (number_string) .ne. 'forty two') stop 2
end


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

* Re: [Patch, fortran] PR70149 - [F08] Character pointer initialization causes ICE
  2018-09-25 16:43 [Patch, fortran] PR70149 - [F08] Character pointer initialization causes ICE Paul Richard Thomas
@ 2018-09-25 18:36 ` Janne Blomqvist
  0 siblings, 0 replies; 2+ messages in thread
From: Janne Blomqvist @ 2018-09-25 18:36 UTC (permalink / raw)
  To: Paul Richard Thomas; +Cc: Fortran List, GCC Patches

On Tue, Sep 25, 2018 at 7:43 PM Paul Richard Thomas <
paul.richard.thomas@gmail.com> wrote:

> This is yet another deferred length character bug. The fix speaks for
> itself. I'll dream up a more suitable name for the testcase before
> committing.
>
> Bootstraps and regtests on FC21/x86_64 - OK for trunk and 8-branch?
>

Ok, looks good.

-- 
Janne Blomqvist

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

end of thread, other threads:[~2018-09-25 18:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-25 16:43 [Patch, fortran] PR70149 - [F08] Character pointer initialization causes ICE Paul Richard Thomas
2018-09-25 18:36 ` Janne Blomqvist

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).