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]

Re: g77 egcs bug ?


As I mentioned to you in private email, how do you get g77 to compile
these lines, given that g77 rejects symbol names with leading
underscores?

This leads me to believe you aren't submitting the same code you
say is crashing.  Please check this.

And, please submit the output of the entire command line with the
`-v' (or `--verbose') option added, so we can see for sure what
versions of things you're invoking.

        tq vm, (burley)


[craig@deer play]$ /develop/egcs/1.1.2/bin/g77 -c guill.f 
guill.f:1: 
         SUBROUTINE _GEMMH_ ( TRANSA, TRANSB, M, N,
                    ^
Invalid form for SUBROUTINE statement at (^)
guill.f: In program `MAIN__':
guill.f:8: 
         INTEGER     M, N, K, LDA, LDB, LDC
                              1
guill.f:10: (continued):
         double complex     A(LDA,*)
                              2
Invalid declaration of or reference to symbol `lda' at (2) [initially seen at (1)]
guill.f:10: 
         double complex     A(LDA,*)
                                  ^
Missing first operand for binary operator at (^)
guill.f:10: 
         double complex     A(LDA,*)
                                  ^
Expression at (^) has incorrect data type or rank for its context
guill.f:8: 
         INTEGER     M, N, K, LDA, LDB, LDC
                                   1
guill.f:11: (continued):
         double complex     B(LDB,*)
                              2
Invalid declaration of or reference to symbol `ldb' at (2) [initially seen at (1)]
guill.f:11: 
         double complex     B(LDB,*)
                                  ^
Missing first operand for binary operator at (^)
guill.f:11: 
         double complex     B(LDB,*)
                                  ^
Expression at (^) has incorrect data type or rank for its context
guill.f:8: 
         INTEGER     M, N, K, LDA, LDB, LDC
                                        1
guill.f:12: (continued):
         double complex     C(LDC,*)
                              2
Invalid declaration of or reference to symbol `ldc' at (2) [initially seen at (1)]
guill.f:12: 
         double complex     C(LDC,*)
                                  ^
Missing first operand for binary operator at (^)
guill.f:12: 
         double complex     C(LDC,*)
                                  ^
Expression at (^) has incorrect data type or rank for its context
guill.f:10: 
         double complex     A(LDA,*)
                            1
guill.f:16: (continued):
         CALL _GEMM_ ( TRANSA, TRANSB, M, N,
         2
Invalid declaration of or reference to symbol `a' at (2) [initially seen at (1)]
guill.f:11: 
         double complex     B(LDB,*)
                            1
guill.f:16: (continued):
         CALL _GEMM_ ( TRANSA, TRANSB, M, N,
         2
Invalid declaration of or reference to symbol `b' at (2) [initially seen at (1)]
guill.f:12: 
         double complex     C(LDC,*)
                            1
guill.f:16: (continued):
         CALL _GEMM_ ( TRANSA, TRANSB, M, N,
         2
Invalid declaration of or reference to symbol `c' at (2) [initially seen at (1)]
guill.f:16: 
         CALL _GEMM_ ( TRANSA, TRANSB, M, N,
              ^
Invalid form for CALL statement at (^)
[craig@deer play]$


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