This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

fortran/4323: internal error in array access reported



>Number:         4323
>Category:       fortran
>Synopsis:       internal error in array access reported
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          ice-on-legal-code
>Submitter-Id:   net
>Arrival-Date:   Fri Sep 14 04:56:00 PDT 2001
>Closed-Date:
>Last-Modified:
>Originator:     Björn Pedersen
>Release:        g77 version 2.95.3 20010315 (SuSE) (from FSF-g77 version 0.5.25 20010315 (release))
>Organization:
>Environment:
Reading specs from /usr/lib/gcc-lib/i486-suse-linux/2.95.3/specs
>Description:
>How-To-Repeat:

>Fix:

>Release-Note:
>Audit-Trail:
>Unformatted:
 >-- begin: test.f 
       Subroutine test(n, name)
 C      Include 'precision.inc'
 C      replaced inline
        Parameter (NBYTER=4)
        Implicit Real (A-H,O-Z)
        Implicit Integer (I-N)
       Integer*8 n
       Character*4 name
 
 C      Include 'params.inc'
         Parameter (nat=900)
 
 
       Common /atoms/ natoms
 
       Character*80 title
       Character*8 atlab(0:nat)
       Common /labels/ title, atlab
 
 
       if (n .Gt. 0 .And. n .Le. natoms) Then
          name = atlab(n)
       Endif
       Return
       End
 --<  end test.f
 g77   -c   test.f
 test.f: In subroutine `test':
 test.f:22: Internal compiler error in `emit_move_insn', at expr.c:2594
 Please submit a full bug report.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]