From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 107444 invoked by alias); 4 Apr 2016 19:54:08 -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 107424 invoked by uid 89); 4 Apr 2016 19:54:07 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:280 X-HELO: mail-qg0-f47.google.com Received: from mail-qg0-f47.google.com (HELO mail-qg0-f47.google.com) (209.85.192.47) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 04 Apr 2016 19:53:57 +0000 Received: by mail-qg0-f47.google.com with SMTP id f52so65516847qga.3 for ; Mon, 04 Apr 2016 12:53:57 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=dtlMMtAl2ePxNxhfcgrsh35p8Ll9YHQjOdpMJo1ZbqU=; b=MmTFS/XzDMozn3knYKbOadCnb+RYEH8YKQOBUoJeT20tUlRYXnk/we1GxlJzHRWmra VZzcQBKHFr/IoHljrr97zXY4W+TGuw3Zq6TNpx9udF6h/vD7Zxm7NXw1h/2rWrlyMnOK BBEQ0tX+WFaeHH4sSsf55cNmyaQjqNm4bWfSbsxc8n10oURxDDAn7tqQB3xlF6VaCzrA LpwK7La6Cauh7y2/Xbky1EaBW578zbhmZXLSxUCQrM/P7OTy3N79Gr41R5c0w5wB11wc vxe+4dXDcZ4md305Kb3SHZixWLArbw0n5IVT01bebfKclJxAH7FOX7JrQ+HLN0yJ42xG nKAQ== X-Gm-Message-State: AD7BkJKAZDYQVUYa5w7On1ZXJsFChC90mGlmJerTyOlv+/1OCqmdbVg7UJz9mv2ZVt6WdT1cvw7gfj0bsD9CNbUZ X-Received: by 10.140.16.133 with SMTP id 5mr9569639qgb.50.1459799635173; Mon, 04 Apr 2016 12:53:55 -0700 (PDT) MIME-Version: 1.0 Received: by 10.55.192.12 with HTTP; Mon, 4 Apr 2016 12:53:15 -0700 (PDT) In-Reply-To: <1459776273-3434-1-git-send-email-martin.galvan@tallertechnologies.com> References: <1459545685-1729-1-git-send-email-martin.galvan@tallertechnologies.com> <1459776273-3434-1-git-send-email-martin.galvan@tallertechnologies.com> From: Martin Galvan Date: Mon, 04 Apr 2016 19:54:00 -0000 Message-ID: Subject: Re: [PATCH v3] Fix gdb crash when trying to print the address of a synthetic C++ reference To: gdb-patches , Pedro Alves Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2016-04/txt/msg00050.txt.bz2 Looking back it seems that I could use readjust_indirect_value_type instead of manually setting the type and enclosing type of the new value. I'll give it a try and send a v4 if it works.