From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8466 invoked by alias); 2 Nov 2005 23:04:57 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 8452 invoked by uid 22791); 2 Nov 2005 23:04:56 -0000 Received: from sibelius.xs4all.nl (HELO sibelius.xs4all.nl) (82.92.89.47) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Wed, 02 Nov 2005 23:04:55 +0000 Received: from elgar.sibelius.xs4all.nl (root@elgar.sibelius.xs4all.nl [192.168.0.2]) by sibelius.xs4all.nl (8.13.4/8.13.4) with ESMTP id jA2N4LJb005188; Thu, 3 Nov 2005 00:04:21 +0100 (CET) Received: from elgar.sibelius.xs4all.nl (kettenis@localhost.sibelius.xs4all.nl [127.0.0.1]) by elgar.sibelius.xs4all.nl (8.13.4/8.13.3) with ESMTP id jA2N4LCh002824; Thu, 3 Nov 2005 00:04:21 +0100 (CET) Received: (from kettenis@localhost) by elgar.sibelius.xs4all.nl (8.13.4/8.13.4/Submit) id jA2N4IXD016588; Thu, 3 Nov 2005 00:04:18 +0100 (CET) Date: Thu, 03 Nov 2005 01:31:00 -0000 Message-Id: <200511022304.jA2N4IXD016588@elgar.sibelius.xs4all.nl> From: Mark Kettenis To: pgilliam@us.ibm.com CC: gdb-patches@sources.redhat.com, drow@false.org In-reply-to: <20051102204359.GA6755@nevyn.them.org> (message from Daniel Jacobowitz on Wed, 2 Nov 2005 15:44:00 -0500) Subject: Re: [PATCH] deal with vector return value for ppc68 References: <200510241606.10304.pgilliam@us.ibm.com> <20051102204359.GA6755@nevyn.them.org> X-SW-Source: 2005-11/txt/msg00049.txt.bz2 > Date: Wed, 2 Nov 2005 15:44:00 -0500 > From: Daniel Jacobowitz > > > + if (readbuf) > > + { > > + regcache_cooked_read (regcache, tdep->ppc_vr0_regnum+2, readbuf); > > + } > > + if (writebuf) > > + { > > + regcache_cooked_write(regcache, tdep->ppc_vr0_regnum+2, writebuf); > > + } > > Useless braces; spaces before parentheses. And before and after the +. Mark