From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 38316 invoked by alias); 14 Oct 2019 00:19:03 -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 38296 invoked by uid 89); 14 Oct 2019 00:19:03 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-6.7 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_3,SPF_HELO_PASS autolearn=ham version=3.3.1 spammy=HContent-Transfer-Encoding:8bit 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 ESMTP; Mon, 14 Oct 2019 00:19:02 +0000 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id E77B6801674 for ; Mon, 14 Oct 2019 00:19:00 +0000 (UTC) Received: from f30-1.lan (ovpn-118-26.phx2.redhat.com [10.3.118.26]) by smtp.corp.redhat.com (Postfix) with ESMTP id BEDE85D6A3; Mon, 14 Oct 2019 00:19:00 +0000 (UTC) From: Kevin Buettner To: gdb-patches@sourceware.org Cc: Kevin Buettner Subject: [PATCH 0/2] Fix BZ 25065 (LTO related GDB segfault) Date: Mon, 14 Oct 2019 00:19:00 -0000 Message-Id: <20191014001842.27413-1-kevinb@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes X-SW-Source: 2019-10/txt/msg00327.txt.bz2 This two part patch consists of a fix for an LTO related GDB segfault plus a test case. Kevin Buettner (2): Fix BZ 25065 - Ensure that physnames are computed for inherited DIEs Test case for BZ 25065 gdb/dwarf2read.c | 11 ++ gdb/testsuite/gdb.dwarf2/imported-unit.c | 56 ++++++++ gdb/testsuite/gdb.dwarf2/imported-unit.exp | 157 +++++++++++++++++++++ 3 files changed, 224 insertions(+) create mode 100644 gdb/testsuite/gdb.dwarf2/imported-unit.c create mode 100644 gdb/testsuite/gdb.dwarf2/imported-unit.exp -- 2.21.0