From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16962 invoked by alias); 5 Dec 2013 00:55:50 -0000 Mailing-List: contact gdb-prs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-prs-owner@sourceware.org Received: (qmail 16931 invoked by uid 48); 5 Dec 2013 00:55:49 -0000 From: "burnus at gmx dot de" To: gdb-prs@sourceware.org Subject: [Bug fortran/15353] ptype/whatis doesn't handle DW_TAG_namelist Date: Thu, 05 Dec 2013 00:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gdb X-Bugzilla-Component: fortran X-Bugzilla-Version: 7.5 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: burnus at gmx dot de X-Bugzilla-Status: NEW X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at sourceware dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2013-q4/txt/msg00511.txt.bz2 https://sourceware.org/bugzilla/show_bug.cgi?id=15353 --- Comment #1 from Tobias Burnus --- GCC 4.9 now supports DW_TAG_namelist. A special case is: module mm integer :: aa, bb namelist /nml/ aa, bb end module mm subroutine test() use mm, only: nml write(*,nml) end subroutine test for which GCC/gfortran - at least when compiled in two files - generates a DW_TAG_imported_declaration with DW_TAG_namelist and *no* DW_TAG_namelist_item (but: DW_AT_declaration = 1). In that case, gdb has to find the DW_TAG_namelist_item from the module. -- You are receiving this mail because: You are on the CC list for the bug.