public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/66244] New: ICE in lhd_set_decl_assembler_name
@ 2015-05-21 14:20 gerhard.steinmetz.fortran@t-online.de
  2015-06-15 17:22 ` [Bug fortran/66244] ICE on assigning a value to a pointer variable gerhard.steinmetz.fortran@t-online.de
  2015-09-08 10:07 ` dominiq at lps dot ens.fr
  0 siblings, 2 replies; 3+ messages in thread
From: gerhard.steinmetz.fortran@t-online.de @ 2015-05-21 14:20 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66244

            Bug ID: 66244
           Summary: ICE in lhd_set_decl_assembler_name
           Product: gcc
           Version: 5.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gerhard.steinmetz.fortran@t-online.de
  Target Milestone: ---

This code snippet ...
   program p
      integer, target :: a(3)
      integer, pointer :: z => a(3)
      z = 0
      print *, z
   end

yields (with gfortran 5.1.1 on SUSE Linux 13.2, 64 bit)
f951: internal compiler error: in lhd_set_decl_assembler_name, at
langhooks.c:179


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

* [Bug fortran/66244] ICE on assigning a value to a pointer variable
  2015-05-21 14:20 [Bug fortran/66244] New: ICE in lhd_set_decl_assembler_name gerhard.steinmetz.fortran@t-online.de
@ 2015-06-15 17:22 ` gerhard.steinmetz.fortran@t-online.de
  2015-09-08 10:07 ` dominiq at lps dot ens.fr
  1 sibling, 0 replies; 3+ messages in thread
From: gerhard.steinmetz.fortran@t-online.de @ 2015-06-15 17:22 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66244

--- Comment #1 from Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> ---
Perhaps it's better to make the target array a bit larger.
And to provide a not so minimalistic version :

   program p
      integer, target :: a(4)
      integer, pointer :: z => a(3)
      call s
   contains
      subroutine s
         a = 123
         z = 0
         print *, a
         print *, z
      end
   end

yields :
f951: internal compiler error: in lhd_set_decl_assembler_name, at
langhooks.c:179

---

Whereas this modification compiles and works as expected :

$ cat z92.f90
   program p
      integer, target :: a(4)
      integer, pointer :: z
      z => a(3)
      call s
   contains
      subroutine s
         a = 123
         z = 0
         print *, a
         print *, z
      end
   end

$ gfortran -g -O0 -Wall -fcheck=all -fno-frontend-optimize z92.f90
$ a.out
         123         123           0         123
           0


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

* [Bug fortran/66244] ICE on assigning a value to a pointer variable
  2015-05-21 14:20 [Bug fortran/66244] New: ICE in lhd_set_decl_assembler_name gerhard.steinmetz.fortran@t-online.de
  2015-06-15 17:22 ` [Bug fortran/66244] ICE on assigning a value to a pointer variable gerhard.steinmetz.fortran@t-online.de
@ 2015-09-08 10:07 ` dominiq at lps dot ens.fr
  1 sibling, 0 replies; 3+ messages in thread
From: dominiq at lps dot ens.fr @ 2015-09-08 10:07 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66244

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2015-09-08
     Ever confirmed|0                           |1

--- Comment #2 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Confirmed from 4.8 up to trunk (6.0). Note that the error for trunk configured
with the default value of --enable-checking is

f951: internal compiler error: in get, at cgraph.h:371


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

end of thread, other threads:[~2015-09-08 10:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-21 14:20 [Bug fortran/66244] New: ICE in lhd_set_decl_assembler_name gerhard.steinmetz.fortran@t-online.de
2015-06-15 17:22 ` [Bug fortran/66244] ICE on assigning a value to a pointer variable gerhard.steinmetz.fortran@t-online.de
2015-09-08 10:07 ` dominiq at lps dot ens.fr

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