public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/33376]  New: [4.3 regression] USE with renaming, assembler message: symbol already defined
@ 2007-09-10  9:06 anlauf at gmx dot de
  2007-09-10 11:36 ` [Bug fortran/33376] " burnus at gcc dot gnu dot org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: anlauf at gmx dot de @ 2007-09-10  9:06 UTC (permalink / raw)
  To: gcc-bugs

Hi,

the following program fails to compile with rev.128283
but used to work just a few days ago:

% cat gfcbug70.f90
module foo
  implicit none
  public chk

  type mytype
    character(len=4) :: str
  end type mytype
  type (mytype) ,parameter :: chk (1) = (/ mytype ("abcd") /)
end module foo

module gfcbug70
  use foo, only: chk_ => chk
  implicit none
contains

  subroutine chk (i)
    integer, intent(in) :: i

    print *, chk_(i)% str
  end subroutine chk
end module gfcbug70

I get:

/tmp/ccnnONGa.s: Assembler messages:
/tmp/ccnnONGa.s:19: Error: symbol `__gfcbug70_MOD_chk' is already defined


-- 
           Summary: [4.3 regression] USE with renaming, assembler message:
                    symbol already defined
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: anlauf at gmx dot de
  GCC host triplet: i686-pc-linux-gnu


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


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

* [Bug fortran/33376] [4.3 regression] USE with renaming, assembler message: symbol already defined
  2007-09-10  9:06 [Bug fortran/33376] New: [4.3 regression] USE with renaming, assembler message: symbol already defined anlauf at gmx dot de
@ 2007-09-10 11:36 ` burnus at gcc dot gnu dot org
  2007-09-10 14:08 ` burnus at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: burnus at gcc dot gnu dot org @ 2007-09-10 11:36 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from burnus at gcc dot gnu dot org  2007-09-10 11:36 -------
Works:
  gcc version 4.3.0 20070905 (experimental) [trunk revision 128123] (GCC)
Fails:
  gcc version 4.3.0 20070906 (experimental) [trunk revision 128175] (GCC)


-- 

burnus at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |burnus at gcc dot gnu dot
                   |                            |org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   GCC host triplet|i686-pc-linux-gnu           |
   Last reconfirmed|0000-00-00 00:00:00         |2007-09-10 11:36:44
               date|                            |


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


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

* [Bug fortran/33376] [4.3 regression] USE with renaming, assembler message: symbol already defined
  2007-09-10  9:06 [Bug fortran/33376] New: [4.3 regression] USE with renaming, assembler message: symbol already defined anlauf at gmx dot de
  2007-09-10 11:36 ` [Bug fortran/33376] " burnus at gcc dot gnu dot org
@ 2007-09-10 14:08 ` burnus at gcc dot gnu dot org
  2007-09-21 16:48 ` pault at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: burnus at gcc dot gnu dot org @ 2007-09-10 14:08 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from burnus at gcc dot gnu dot org  2007-09-10 14:08 -------
The regression is caused by
http://gcc.gnu.org/ml/gcc-cvs/2007-09/msg00124.html

2007-09-05  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/31564 (PR31564)
        * primary.c (gfc_match_rvalue): Make expressions that refer
        to derived type parameters that have array references into
        variable expressions.  Remove references to use association
        from the symbol.

        PR fortran/33241 (PR33241)
        * decl.c (add_init_expr_to_sym): Provide assumed character
        length parameters with the length of the initialization
        expression, if a constant, or that of the first element of
        an array.


-- 

burnus at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pault at gcc dot gnu dot org
           Keywords|                            |link-failure
   Target Milestone|---                         |4.3.0


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


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

* [Bug fortran/33376] [4.3 regression] USE with renaming, assembler message: symbol already defined
  2007-09-10  9:06 [Bug fortran/33376] New: [4.3 regression] USE with renaming, assembler message: symbol already defined anlauf at gmx dot de
  2007-09-10 11:36 ` [Bug fortran/33376] " burnus at gcc dot gnu dot org
  2007-09-10 14:08 ` burnus at gcc dot gnu dot org
@ 2007-09-21 16:48 ` pault at gcc dot gnu dot org
  2007-09-21 17:18 ` pault at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: pault at gcc dot gnu dot org @ 2007-09-21 16:48 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from pault at gcc dot gnu dot org  2007-09-21 16:48 -------
Hi Harald!

The number of your testcase is depressing but I'll take it on anyway; it's
related to PR33337, as well as PR31564, whose patch caused this regression.

There is some wierdness going on with name-mangling that I am sure is the
cause.

Cheers

Paul


-- 


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


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

* [Bug fortran/33376] [4.3 regression] USE with renaming, assembler message: symbol already defined
  2007-09-10  9:06 [Bug fortran/33376] New: [4.3 regression] USE with renaming, assembler message: symbol already defined anlauf at gmx dot de
                   ` (2 preceding siblings ...)
  2007-09-21 16:48 ` pault at gcc dot gnu dot org
@ 2007-09-21 17:18 ` pault at gcc dot gnu dot org
  2007-09-22  9:32 ` pault at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: pault at gcc dot gnu dot org @ 2007-09-21 17:18 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from pault at gcc dot gnu dot org  2007-09-21 17:18 -------
It's mine.

Paul


-- 

pault at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |pault at gcc dot gnu dot org
                   |dot org                     |
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2007-09-10 11:36:44         |2007-09-21 17:18:04
               date|                            |


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


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

* [Bug fortran/33376] [4.3 regression] USE with renaming, assembler message: symbol already defined
  2007-09-10  9:06 [Bug fortran/33376] New: [4.3 regression] USE with renaming, assembler message: symbol already defined anlauf at gmx dot de
                   ` (3 preceding siblings ...)
  2007-09-21 17:18 ` pault at gcc dot gnu dot org
@ 2007-09-22  9:32 ` pault at gcc dot gnu dot org
  2007-09-22 15:47 ` pault at gcc dot gnu dot org
  2007-09-22 16:40 ` pault at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: pault at gcc dot gnu dot org @ 2007-09-22  9:32 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from pault at gcc dot gnu dot org  2007-09-22 09:32 -------
(In reply to comment #4)
> It's mine.
> 
> Paul
> 
The patch has been posted on the list.

http://gcc.gnu.org/ml/fortran/2007-09/msg00378.html

Paul


-- 


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


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

* [Bug fortran/33376] [4.3 regression] USE with renaming, assembler message: symbol already defined
  2007-09-10  9:06 [Bug fortran/33376] New: [4.3 regression] USE with renaming, assembler message: symbol already defined anlauf at gmx dot de
                   ` (4 preceding siblings ...)
  2007-09-22  9:32 ` pault at gcc dot gnu dot org
@ 2007-09-22 15:47 ` pault at gcc dot gnu dot org
  2007-09-22 16:40 ` pault at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: pault at gcc dot gnu dot org @ 2007-09-22 15:47 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from pault at gcc dot gnu dot org  2007-09-22 15:46 -------
Subject: Bug 33376

Author: pault
Date: Sat Sep 22 15:46:41 2007
New Revision: 128672

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=128672
Log:
2007-09-22  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/33337
        PR fortran/33376
        * trans-decl.c (gfc_create_module_variable): Output
        derived type parameters.
        * arith.c (gfc_parentheses): Return the argument if
        it is a constant expression.
        * primary.c (gfc_match_rvalue): Remove the clearing of
        the module name and the use_assoc attribute for derived
        type parameter expressions.

2007-09-22  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/33337
        * gfortran.dg/derived_comp_array_ref_3.f90: New test.

        PR fortran/33376
        * gfortran.dg/derived_comp_array_ref_4.f90: New test.


Added:
    trunk/gcc/testsuite/gfortran.dg/derived_comp_array_ref_3.f90
    trunk/gcc/testsuite/gfortran.dg/derived_comp_array_ref_4.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/arith.c
    trunk/gcc/fortran/primary.c
    trunk/gcc/fortran/trans-decl.c
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug fortran/33376] [4.3 regression] USE with renaming, assembler message: symbol already defined
  2007-09-10  9:06 [Bug fortran/33376] New: [4.3 regression] USE with renaming, assembler message: symbol already defined anlauf at gmx dot de
                   ` (5 preceding siblings ...)
  2007-09-22 15:47 ` pault at gcc dot gnu dot org
@ 2007-09-22 16:40 ` pault at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: pault at gcc dot gnu dot org @ 2007-09-22 16:40 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from pault at gcc dot gnu dot org  2007-09-22 16:40 -------
Fixed on trunk.

Thanks, Harald.

Paul


-- 

pault at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


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


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

end of thread, other threads:[~2007-09-22 16:40 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-09-10  9:06 [Bug fortran/33376] New: [4.3 regression] USE with renaming, assembler message: symbol already defined anlauf at gmx dot de
2007-09-10 11:36 ` [Bug fortran/33376] " burnus at gcc dot gnu dot org
2007-09-10 14:08 ` burnus at gcc dot gnu dot org
2007-09-21 16:48 ` pault at gcc dot gnu dot org
2007-09-21 17:18 ` pault at gcc dot gnu dot org
2007-09-22  9:32 ` pault at gcc dot gnu dot org
2007-09-22 15:47 ` pault at gcc dot gnu dot org
2007-09-22 16:40 ` pault at gcc dot gnu dot 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).