From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54598) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dVL1W-0003Nn-GM for qemu-devel@nongnu.org; Wed, 12 Jul 2017 13:02:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dVL1S-0000dP-Iz for qemu-devel@nongnu.org; Wed, 12 Jul 2017 13:02:02 -0400 Received: from mail-qt0-f194.google.com ([209.85.216.194]:34772) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dVL1S-0000dG-Di for qemu-devel@nongnu.org; Wed, 12 Jul 2017 13:01:58 -0400 Received: by mail-qt0-f194.google.com with SMTP id m54so2848376qtb.1 for ; Wed, 12 Jul 2017 10:01:58 -0700 (PDT) Sender: =?UTF-8?Q?Philippe_Mathieu=2DDaud=C3=A9?= References: <1499586614-20507-1-git-send-email-cota@braap.org> <1499586614-20507-8-git-send-email-cota@braap.org> From: =?UTF-8?Q?Philippe_Mathieu-Daud=c3=a9?= Message-ID: Date: Wed, 12 Jul 2017 14:00:52 -0300 MIME-Version: 1.0 In-Reply-To: <1499586614-20507-8-git-send-email-cota@braap.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH 07/22] tcg/i386: constify tcg_target_callee_save_regs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Emilio G. Cota" , qemu-devel@nongnu.org On 07/09/2017 04:49 AM, Emilio G. Cota wrote: > Signed-off-by: Emilio G. Cota Reviewed-by: Philippe Mathieu-Daudé > --- > tcg/i386/tcg-target.inc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tcg/i386/tcg-target.inc.c b/tcg/i386/tcg-target.inc.c > index 01e3b4e..06df01a 100644 > --- a/tcg/i386/tcg-target.inc.c > +++ b/tcg/i386/tcg-target.inc.c > @@ -2514,7 +2514,7 @@ static const TCGTargetOpDef *tcg_target_op_def(TCGOpcode op) > return NULL; > } > > -static int tcg_target_callee_save_regs[] = { > +static const int tcg_target_callee_save_regs[] = { > #if TCG_TARGET_REG_BITS == 64 > TCG_REG_RBP, > TCG_REG_RBX, >