public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/60774] New: f951: internal compiler error: Segmentation fault: 11
@ 2014-04-07  3:25 kevinecahill at gmail dot com
  2014-04-08 19:34 ` [Bug fortran/60774] " dominiq at lps dot ens.fr
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: kevinecahill at gmail dot com @ 2014-04-07  3:25 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60774

            Bug ID: 60774
           Summary: f951: internal compiler error: Segmentation fault: 11
           Product: gcc
           Version: 4.6.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kevinecahill at gmail dot com

Created attachment 32555
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=32555&action=edit
A fortran program I wrote.

gfortran -Wall -O3 -o $1 $2
energy.f95:180.3:

123 
   1
Warning: Ignoring statement label in empty statement at (1)
f951: internal compiler error: Segmentation fault: 11
Please submit a full bug report,
with preprocessed source if appropriate.


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

* [Bug fortran/60774] f951: internal compiler error: Segmentation fault: 11
  2014-04-07  3:25 [Bug fortran/60774] New: f951: internal compiler error: Segmentation fault: 11 kevinecahill at gmail dot com
@ 2014-04-08 19:34 ` dominiq at lps dot ens.fr
  2014-04-09  9:06 ` dominiq at lps dot ens.fr
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: dominiq at lps dot ens.fr @ 2014-04-08 19:34 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60774

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2014-04-08
     Ever confirmed|0                           |1

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Confirmed from 4.5 to 4.9 (trunk). Compiling the following reduced tests

program energy  
  implicit none ! all dble  
  integer(kind=4)::ns  ! size of spatial lattice
  integer(kind=4)::i,j,k,l
  integer(kind=4),allocatable::back(:,:) ! works up to 20,10
  integer(kind=4)::di,index
  doubleprecision,allocatable::sumffi(:)
  doubleprecision,allocatable::f(:,:,:,:) ! the dimensionless field
  go to 123
  do di = 0, ns/2 
     sumffi(di) = sumffi(di) + f(i,j,k,l)*f(back(i,di),j,k,l)
  end do
123 
contains
  function T(i,j,k,l,iu,ju,ku,lu,id,jd,kd,ld) ! only what depends on ijkl
    doubleprecision::T
    integer(kind=4)::i,j,k,l,iu,id,ju,jd,ku,kd,lu,ld
    T = f(i,j,k,l)*( f(i,j,k,l) - f(iu,j,k,l) - f(id,j,k,l) )
  end function T
end program energy

gives and ICE with 4.5, the error

pr60774_red.f90:13.3:

123 
   1
Warning: Ignoring statement label in empty statement at (1)
pr60774_red.f90:9.11:

  go to 123
           1
Error: Label 123 referenced at (1) is never defined

with 4.6 and 4.7, and

pr60774_red.f90:13.3:

123 
   1
Warning: Ignoring statement label in empty statement at (1)
<During initialization>

Error: Label 1119913824 referenced at (1) is never defined

with 4.8 and 4.9 (and an ICE with my working tree!-).


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

* [Bug fortran/60774] f951: internal compiler error: Segmentation fault: 11
  2014-04-07  3:25 [Bug fortran/60774] New: f951: internal compiler error: Segmentation fault: 11 kevinecahill at gmail dot com
  2014-04-08 19:34 ` [Bug fortran/60774] " dominiq at lps dot ens.fr
@ 2014-04-09  9:06 ` dominiq at lps dot ens.fr
  2014-06-30  2:48 ` bdavis at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: dominiq at lps dot ens.fr @ 2014-04-09  9:06 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60774

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-invalid-code

--- Comment #2 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Reduced test giving an ICE with a clean trunk (r209224)

program energy  
  implicit none ! all dble  
  integer(kind=4)::ns  ! size of spatial lattice
  integer(kind=4)::nt  ! size of temporal lattice; nt >= ns
  integer(kind=4)::i,j,k,l!,iu,id,ju,jd,ku,kd,lu,ld
  integer(kind=4),allocatable::back(:,:) ! works up to 20,10
  integer(kind=4)::di
  doubleprecision,allocatable::sumffi(:)
  doubleprecision,allocatable::f(:,:,:,:) ! the dimensionless field
  ! potential energy; first something I did in an earlier paper
  nt = 10
  ns = 2
  allocate( f(nt,ns,ns,ns), back(ns,0:10) )
  allocate( sumffi(0:nt/2))
  go to 123
  do di = 0, ns/2 
     sumffi(di) = sumffi(di) + f(i,j,k,l)*f(back(i,di),j,k,l)
  end do
123 
contains
  function T(i,j,k,l,iu,ju,ku,lu,id,jd,kd,ld) ! only what depends on ijkl
    doubleprecision::T
    integer(kind=4)::i,j,k,l,iu,id,ju,jd,ku,kd,lu,ld
    T = f(i,j,k,l)*( f(i,j,k,l) - f(iu,j,k,l) - f(id,j,k,l) )
  end function T
end program energy

The backtrace is

  * frame #0: 0x00007fff91e76866 libsystem_kernel.dylib`__pthread_kill + 10
    frame #1: 0x00007fff989c935c libsystem_pthread.dylib`pthread_kill + 92
    frame #2: 0x00007fff98740b1a libsystem_c.dylib`abort + 125
    frame #3: 0x0000000100bd7978 f951`linemap_lookup(set=0x0000000141d49000,
line=<unavailable>) + 456 at line-map.c:709
    frame #4: 0x0000000100bd79dc
f951`linemap_macro_loc_to_exp_point(set=0x0000000141d49000, location=33570,
original_map=0x00007fff5fbfedf8) + 76 at line-map.c:1181
    frame #5: 0x0000000100bbf59e f951`expand_location_1(loc=33570,
expansion_point_p=<unavailable>) + 126 at input.c:164
    frame #6: 0x0000000100bc039e f951`expand_location(loc=<unavailable>) + 14
at input.c:724
    frame #7: 0x000000010002e188 f951`show_locus(c1=-1350314028, c2=-1,
loc=<unavailable>) + 88 at error.c:355
    frame #8: 0x000000010002ed3e f951`error_print(type=0x0000000100cd1751,
format0=0x0000000100ce34a8, argp=<unavailable>) + 2286 at error.c:476
    frame #9: 0x000000010002f90e f951`gfc_error(gmsgid=<unavailable>) + 446 at
error.c:1003
    frame #10: 0x000000010008e4c9 f951`resolve_code(code=0x0000000141f08e40,
ns=0x0000000143023c00) + 9241 at resolve.c:9828
    frame #11: 0x000000010008f8a4 f951`resolve_codes(ns=<unavailable>) + 308 at
resolve.c:14610
    frame #12: 0x000000010008f99d f951`gfc_resolve(ns=0x0000000143023c00) + 61
at resolve.c:14638
    frame #13: 0x0000000100079fab f951`gfc_parse_file() [inlined]
resolve_all_program_units(gfc_global_ns_list=0x0000000143023c00) + 71 at
parse.c:4468
    frame #14: 0x0000000100079f64 f951`gfc_parse_file() + 1364
    frame #15: 0x00000001000bc276 f951`gfc_be_parse_file + 38 at f95-lang.c:188
    frame #16: 0x000000010086a287 f951`compile_file + 39 at toplev.c:548
    frame #17: 0x000000010086c7a4 f951`toplev_main(argc=2,
argv=0x00007fff5fbff4a0) + 3284 at toplev.c:1914


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

* [Bug fortran/60774] f951: internal compiler error: Segmentation fault: 11
  2014-04-07  3:25 [Bug fortran/60774] New: f951: internal compiler error: Segmentation fault: 11 kevinecahill at gmail dot com
  2014-04-08 19:34 ` [Bug fortran/60774] " dominiq at lps dot ens.fr
  2014-04-09  9:06 ` dominiq at lps dot ens.fr
@ 2014-06-30  2:48 ` bdavis at gcc dot gnu.org
  2014-06-30  3:20 ` kevinecahill at gmail dot com
  2014-08-24 20:19 ` bdavis at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: bdavis at gcc dot gnu.org @ 2014-06-30  2:48 UTC (permalink / raw)
  To: gcc-bugs

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

Bud Davis <bdavis at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bdavis at gcc dot gnu.org

--- Comment #3 from Bud Davis <bdavis at gcc dot gnu.org> ---
reduced a bit further.


program energy  
  go to 123
123 
contains
function T(i,j,k,l,iu,ju,ku,lu,id,jd,kd,ld) 
 end function T
end program energy


the label is "123"
make it "123 "

and the segfault does not happen.

(random strange thing seen when reducing it)


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

* [Bug fortran/60774] f951: internal compiler error: Segmentation fault: 11
  2014-04-07  3:25 [Bug fortran/60774] New: f951: internal compiler error: Segmentation fault: 11 kevinecahill at gmail dot com
                   ` (2 preceding siblings ...)
  2014-06-30  2:48 ` bdavis at gcc dot gnu.org
@ 2014-06-30  3:20 ` kevinecahill at gmail dot com
  2014-08-24 20:19 ` bdavis at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: kevinecahill at gmail dot com @ 2014-06-30  3:20 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from Kevin Cahill <kevinecahill at gmail dot com> ---
Thank you.
Best wishes,
Kevin

Kevin Cahill
Professor of Physics & Astronomy
Physics Dept. 1919 Lomas NE, MSC 07 4220 
University of New Mexico 
Albuquerque, NM 87131-0001

kevinecahill@gmail.com   cahill@unm.edu   505 205 5448  
Until 14 July, I am at KIAS in Seoul  +82 (0) 10-2930-5448



On Jun 30, 2014, at 11:48 AM, bdavis at gcc dot gnu.org
<gcc-bugzilla@gcc.gnu.org> wrote:

> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60774
> 
> Bud Davis <bdavis at gcc dot gnu.org> changed:
> 
>           What    |Removed                     |Added
> ----------------------------------------------------------------------------
>                 CC|                            |bdavis at gcc dot gnu.org
> 
> --- Comment #3 from Bud Davis <bdavis at gcc dot gnu.org> ---
> reduced a bit further.
> 
> 
> program energy  
>  go to 123
> 123 
> contains
> function T(i,j,k,l,iu,ju,ku,lu,id,jd,kd,ld) 
> end function T
> end program energy
> 
> 
> the label is "123"
> make it "123 "
> 
> and the segfault does not happen.
> 
> (random strange thing seen when reducing it)
> 
> -- 
> You are receiving this mail because:
> You reported the bug.


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

* [Bug fortran/60774] f951: internal compiler error: Segmentation fault: 11
  2014-04-07  3:25 [Bug fortran/60774] New: f951: internal compiler error: Segmentation fault: 11 kevinecahill at gmail dot com
                   ` (3 preceding siblings ...)
  2014-06-30  3:20 ` kevinecahill at gmail dot com
@ 2014-08-24 20:19 ` bdavis at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: bdavis at gcc dot gnu.org @ 2014-08-24 20:19 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from Bud Davis <bdavis at gcc dot gnu.org> ---
Index: gcc/gcc/fortran/parse.c
===================================================================
--- gcc/gcc/fortran/parse.c    (revision 214408)
+++ gcc/gcc/fortran/parse.c    (working copy)
@@ -868,8 +868,6 @@
         {
           gfc_warning_now ("Ignoring statement label in empty statement "
                    "at %L", &label_locus);
-          gfc_free_st_label (gfc_statement_label);
-          gfc_statement_label = NULL;
           return ST_NONE;
         }
     }

Looks very promising.


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

end of thread, other threads:[~2014-08-24 20:19 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-07  3:25 [Bug fortran/60774] New: f951: internal compiler error: Segmentation fault: 11 kevinecahill at gmail dot com
2014-04-08 19:34 ` [Bug fortran/60774] " dominiq at lps dot ens.fr
2014-04-09  9:06 ` dominiq at lps dot ens.fr
2014-06-30  2:48 ` bdavis at gcc dot gnu.org
2014-06-30  3:20 ` kevinecahill at gmail dot com
2014-08-24 20:19 ` bdavis at gcc dot gnu.org

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