From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21119 invoked by alias); 6 Feb 2003 18:21:04 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 21111 invoked from network); 6 Feb 2003 18:21:03 -0000 Received: from unknown (HELO localhost.redhat.com) (172.16.49.200) by 172.16.49.205 with SMTP; 6 Feb 2003 18:21:03 -0000 Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 26D2D3CC9; Thu, 6 Feb 2003 13:21:01 -0500 (EST) Message-ID: <3E42A78C.5040908@redhat.com> Date: Thu, 06 Feb 2003 18:21:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.1) Gecko/20021211 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jason Molenda Cc: Elena Zannoni , Daniel Jacobowitz , David Carlton , gdb-patches@sources.redhat.com, jjohnstn@redhat.com Subject: Re: Fix committed for mi-syn-frames fails (was: Re: PATCH RFA: Fix MI stack frame output for synthetic frames) References: <3DCC3CEE.5040902@redhat.com> <20021109004723.A20334@molenda.com> <3E3CB218.1020706@redhat.com> <20030203102748.A75701@molenda.com> <20030203183441.GA27429@nevyn.them.org> <20030204000936.A19984@molenda.com> <20030205002416.A75501@molenda.com> <20030205135947.GA30516@nevyn.them.org> <15937.9876.260141.789359@localhost.redhat.com> <20030205222835.A985@molenda.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2003-02/txt/msg00219.txt.bz2 > - while (in < 100) > - in++; > + int count = in; > + while (count < 100) > + count++; Pss, add a comment explaining why the code is written that way :-) Andrew