From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5966 invoked by alias); 9 May 2002 19:15:15 -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 5956 invoked from network); 9 May 2002 19:15:13 -0000 Received: from unknown (HELO tetsuo.nj.caldera.com) (63.124.204.226) by sources.redhat.com with SMTP; 9 May 2002 19:15:13 -0000 Received: from caldera.com (localhost.localdomain [127.0.0.1]) by tetsuo.nj.caldera.com (8.11.6/8.11.6) with ESMTP id g49JR9c05466; Thu, 9 May 2002 15:27:10 -0400 Message-ID: <3CDACD8D.3C6AA3FF@caldera.com> Date: Thu, 09 May 2002 12:15:00 -0000 From: Petr Sorfa Organization: Caldera X-Accept-Language: en MIME-Version: 1.0 To: Kevin Buettner CC: "gdb-patches@sources.redhat.com" Subject: Re: [PATCH] IA64 fix for breakpoints on L in MLX instruction bundles References: <3CDAAB19.4780AA1F@caldera.com> <1020509165617.ZM13420@localhost.localdomain> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-SW-Source: 2002-05/txt/msg00290.txt.bz2 Hi Kevin, My apologies, I'll fix the indentation. Petr > On May 9, 1:00pm, Petr Sorfa wrote: > > > Patch for handling breakpoints on the L instruction type in an MLX > > bundle. > > > > > > 2002-05-09 Petr Sorfa (petrs@caldera.com) > > > > * ia64-tdep.c: Handle breakpoints on L instruction type > > in MLX instruction bundle by moving the breakpoint to > > the third slot (X instruction type) as L holds only data. > > Approved, but I'd like you to fix a minor indentation issue prior > to committing it though... > > > + if (slotnum == 1 && template_encoding_table[template][1] == L) > > + { > > + slotnum = 2; > > + } > > This should look like this instead: > > > + if (slotnum == 1 && template_encoding_table[template][1] == L) > > + { > > + slotnum = 2; > > + } > > Or just: > > > + if (slotnum == 1 && template_encoding_table[template][1] == L) > > + slotnum = 2; > > Thanks, > > Kevin