From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 33310 invoked by alias); 29 Oct 2015 22:36:26 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 33296 invoked by uid 89); 29 Oct 2015 22:36:25 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.7 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 29 Oct 2015 22:36:24 +0000 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id 919FC8F268; Thu, 29 Oct 2015 22:36:23 +0000 (UTC) Received: from host1.jankratochvil.net (ovpn-116-96.ams2.redhat.com [10.36.116.96]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t9TMaJ3n006756 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 29 Oct 2015 18:36:22 -0400 Date: Fri, 30 Oct 2015 10:39:00 -0000 From: Jan Kratochvil To: Joel Brobecker Cc: Keven Boell , gdb-patches@sourceware.org Subject: Re: off-trunk gdb.fortran/dwarf-stride.exp no longer PASSes [Re: [PATCH 0/2] fort_dyn_array: Enable basic Fortran dynamic array support] Message-ID: <20151029223619.GA12147@host1.jankratochvil.net> References: <1435754532-17922-1-git-send-email-keven.boell@intel.com> <20151027212831.GA3058@host1.jankratochvil.net> <20151027212954.GA19347@host1.jankratochvil.net> <20151028161907.GB4009@adacore.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20151028161907.GB4009@adacore.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2015-10/txt/msg00743.txt.bz2 On Wed, 28 Oct 2015 17:19:07 +0100, Joel Brobecker wrote: > Possibly, but I don't know. Keven, can you take a look, please? Apparently the VLA patchset is not yet checked-in completely, for example the off-trunk patchset formerly contained: attr = dwarf2_attr (die, DW_AT_string_length, cu); if (attr) { - length = DW_UNSND (attr); + if (attr_form_is_block (attr)) + { but current FSF GDB HEAD does not yet recognize attr_form_is_block for DW_AT_string_length at all so it just cannot work yet. I will have to apply only remaining parts of the former off-trunk patchset but that is sure off-topic for upstream GDB. Jan