From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19539 invoked by alias); 7 Sep 2015 10:16:23 -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 19527 invoked by uid 89); 7 Sep 2015 10:16:22 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-wi0-f180.google.com Received: from mail-wi0-f180.google.com (HELO mail-wi0-f180.google.com) (209.85.212.180) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 07 Sep 2015 10:16:21 +0000 Received: by wicfx3 with SMTP id fx3so78550380wic.0 for ; Mon, 07 Sep 2015 03:16:17 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.180.23.132 with SMTP id m4mr31749418wif.89.1441620977585; Mon, 07 Sep 2015 03:16:17 -0700 (PDT) Received: by 10.27.83.201 with HTTP; Mon, 7 Sep 2015 03:16:17 -0700 (PDT) In-Reply-To: <868u8ny4je.fsf@gmail.com> References: <868u8ny4je.fsf@gmail.com> Date: Mon, 07 Sep 2015 10:16:00 -0000 Message-ID: Subject: Re: [PATCH v3 1/2] D: Support looking up symbols in the current and imported modules From: Iain Buclaw To: Yao Qi Cc: GDB Patches , Doug Evans , Pierre-Marie de Rodat Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2015-09/txt/msg00076.txt.bz2 On 3 September 2015 at 16:13, Yao Qi wrote: > Iain Buclaw writes: > >> Third times a charm. >> >> Rebased this against master, in particular to make it compatible with >> the recent block_symbol additions. I don't have a GCC-4.1 compiler at >> hand, but I don't think I'm doing anything that may trigger build >> warnings. Pierre, maybe you want to confirm? >> >> I've also gotten round to completing the d-exp expression parser >> rewrite - or at least to a nice stable point. Will be submitting that >> in patch #2. > > Hi Iain, > This patch causes a regression shown by buildbot > https://sourceware.org/ml/gdb-testers/2015-q3/msg07398.html > > python print(gdb.lookup_type('ucent').name) > Traceback (most recent call last): > File "", line 1, in > gdb.error: No type named ucent. > Error while executing Python code. > (gdb) FAIL: gdb.python/py-lookup-type.exp: lookup type ucent using language d > > can you take a look? > Will do, I didn't realise that the python testsuite called into language D. Iain