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]

g77 egcs bug ?


I  have a question ?bug? dealing with egcs-1.1.1, here is the error
message:

g77 -c -g gemmh.f
g77: Internal compiler error: program f771 got fatal signal 11

I am using egcs-1.1.1 [egcs-2.91.60 19981201] (but I think it is the
same with
egcs-1.1.2). My platform is : SunOS 5.6 i86pc.

The silly piece of code was this (a stupid wrapper !)


      SUBROUTINE _GEMMH_ ( TRANSA, TRANSB, M, N,
     &                     K, ALPHA, A, LDA,
     &                     B, LDB, BETA, C, LDC )
c
      implicit none
c
      CHARACTER*1 TRANSA, TRANSB
      INTEGER     M, N, K, LDA, LDB, LDC
c
      double complex     A(LDA,*)
      double complex     B(LDB,*)
      double complex     C(LDC,*)
      double complex     ALPHA
      double complex     BETA
c
      CALL _GEMM_ ( TRANSA, TRANSB, M, N,
     &              K, ALPHA, A, LDA, B, LDB,
     &              BETA, C, LDC )
c
      RETURN
      END

the interesting thing is that it is OK without -g

Guillaume




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