From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14991 invoked by alias); 29 Nov 2006 09:25:59 -0000 Received: (qmail 14981 invoked by uid 22791); 29 Nov 2006 09:25:58 -0000 X-Spam-Check-By: sourceware.org Received: from main.gmane.org (HELO ciao.gmane.org) (80.91.229.2) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 29 Nov 2006 09:25:49 +0000 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1GpLh0-0001g0-Rk for gdb-patches@sources.redhat.com; Wed, 29 Nov 2006 10:25:26 +0100 Received: from 73-198.umostel.ru ([82.179.73.198]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 29 Nov 2006 10:25:26 +0100 Received: from ghost by 73-198.umostel.ru with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 29 Nov 2006 10:25:26 +0100 To: gdb-patches@sources.redhat.com From: Vladimir Prus Subject: Re: MI/C++/references fixup Date: Wed, 29 Nov 2006 09:25:00 -0000 Message-ID: References: <200611291215.21876.vladimir@codesourcery.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit User-Agent: KNode/0.10.2 X-IsSubscribed: yes 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 X-SW-Source: 2006-11/txt/msg00374.txt.bz2 Vladimir Prus wrote: > > As noted by Nick, my varobj laziness patch has broken C++ references > updates -- now -var-update does not detect the situation when a reference > variable just got initialized, for example: > > int x = 4; > int &rx = x; I've got that wrong -- the initialization of reference is detected, but the change of the value itself is not. - Volodya