g77 egcs bug ?

ALLEON Guillaume alleon@club-internet.fr
Wed May 12 14:01:00 GMT 1999


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





More information about the Gcc-bugs mailing list