From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25095 invoked by alias); 14 Oct 2013 17:34:51 -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 25080 invoked by uid 89); 14 Oct 2013 17:34:50 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-lb0-f175.google.com Received: from mail-lb0-f175.google.com (HELO mail-lb0-f175.google.com) (209.85.217.175) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Mon, 14 Oct 2013 17:34:50 +0000 Received: by mail-lb0-f175.google.com with SMTP id y6so5847604lbh.20 for ; Mon, 14 Oct 2013 10:34:46 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.112.135.104 with SMTP id pr8mr2773062lbb.34.1381772085942; Mon, 14 Oct 2013 10:34:45 -0700 (PDT) Received: by 10.112.101.7 with HTTP; Mon, 14 Oct 2013 10:34:45 -0700 (PDT) In-Reply-To: <87fvs33kb7.fsf@fleche.redhat.com> References: <20131012152836.GA9438@host2.jankratochvil.net> <87fvs33kb7.fsf@fleche.redhat.com> Date: Mon, 14 Oct 2013 17:34:00 -0000 Message-ID: Subject: Re: [patch] Support C++11 rvalue (move constructor) From: Jonathan Wakely To: Tom Tromey Cc: Jan Kratochvil , gdb-patches@sourceware.org Content-Type: text/plain; charset=ISO-8859-1 X-SW-Source: 2013-10/txt/msg00442.txt.bz2 On 14 October 2013 17:10, Tom Tromey wrote: > CCing Jonathan Wakely. > > Jan> currently one cannot debug C++11 move constructors, one gets: > > This is PR 14441. Also see the thread: > https://sourceware.org/ml/gdb/2012-10/msg00108.html > > I think Jonathan started a branch for this... I have a local Git branch on my home machine, and IIRC I got some uses of rvalue references displaying correctly, but not all. When I tried to do something more invasive like Jan's suggestion (1) I got a bit bogged down learning the GDB code, and never finished the job.