From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49709) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YxlpI-0006x1-6A for qemu-devel@nongnu.org; Wed, 27 May 2015 20:37:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YxlpH-0008Ol-5E for qemu-devel@nongnu.org; Wed, 27 May 2015 20:37:36 -0400 Received: from mail-ob0-x231.google.com ([2607:f8b0:4003:c01::231]:36842) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YxlpH-0008Of-0O for qemu-devel@nongnu.org; Wed, 27 May 2015 20:37:35 -0400 Received: by obbea2 with SMTP id ea2so20913705obb.3 for ; Wed, 27 May 2015 17:37:34 -0700 (PDT) MIME-Version: 1.0 Sender: alistair23@gmail.com In-Reply-To: References: <93a56ac9e58f2b1e1fd7b55d51bfc3142bef7b45.1431909583.git.alistair.francis@xilinx.com> From: Alistair Francis Date: Thu, 28 May 2015 10:37:03 +1000 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [Qemu-devel] [PATCH RESEND v1 1/5] target-microblaze: Fix up indentation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Crosthwaite Cc: Peter Maydell , Richard Henderson , "qemu-devel@nongnu.org Developers" , =?UTF-8?Q?Andreas_F=C3=A4rber?= , Alistair Francis On Mon, May 25, 2015 at 1:44 PM, Peter Crosthwaite wrote: > On Mon, May 18, 2015 at 4:12 PM, Alistair Francis > wrote: >> Fix up the incorrect indentation level in the helper_stackprot() function. >> >> Signed-off-by: Alistair Francis > > Reviewed-by: Peter Crosthwaite Thanks Alistair > >> --- >> >> target-microblaze/op_helper.c | 10 +++++----- >> 1 files changed, 5 insertions(+), 5 deletions(-) >> >> diff --git a/target-microblaze/op_helper.c b/target-microblaze/op_helper.c >> index a4c8f04..d2b3624 100644 >> --- a/target-microblaze/op_helper.c >> +++ b/target-microblaze/op_helper.c >> @@ -468,11 +468,11 @@ void helper_memalign(CPUMBState *env, uint32_t addr, uint32_t dr, uint32_t wr, >> void helper_stackprot(CPUMBState *env, uint32_t addr) >> { >> if (addr < env->slr || addr > env->shr) { >> - qemu_log("Stack protector violation at %x %x %x\n", >> - addr, env->slr, env->shr); >> - env->sregs[SR_EAR] = addr; >> - env->sregs[SR_ESR] = ESR_EC_STACKPROT; >> - helper_raise_exception(env, EXCP_HW_EXCP); >> + qemu_log("Stack protector violation at %x %x %x\n", >> + addr, env->slr, env->shr); >> + env->sregs[SR_EAR] = addr; >> + env->sregs[SR_ESR] = ESR_EC_STACKPROT; >> + helper_raise_exception(env, EXCP_HW_EXCP); >> } >> } >> >> -- >> 1.7.1 >> >> >