From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54342) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aoFPr-0001dS-FX for qemu-devel@nongnu.org; Thu, 07 Apr 2016 15:16:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aoFPn-0000HK-RJ for qemu-devel@nongnu.org; Thu, 07 Apr 2016 15:16:30 -0400 Received: from mail.weilnetz.de ([37.221.199.173]:41117) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aoFPn-0000HB-Lt for qemu-devel@nongnu.org; Thu, 07 Apr 2016 15:16:27 -0400 References: <1460044433-19282-1-git-send-email-sergey.fedorov@linaro.org> <1460044433-19282-2-git-send-email-sergey.fedorov@linaro.org> <5706A3C6.7030707@twiddle.net> From: Stefan Weil Message-ID: <5706B206.904@weilnetz.de> Date: Thu, 7 Apr 2016 21:16:22 +0200 MIME-Version: 1.0 In-Reply-To: <5706A3C6.7030707@twiddle.net> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH 01/11] tci: Fix build regression List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Richard Henderson , Sergey Fedorov , qemu-devel@nongnu.org Cc: =?UTF-8?Q?Alex_Benn=c3=a9e?= , Sergey Fedorov , Paolo Bonzini , Peter Crosthwaite , Michael Roth , Peter Maydell Am 07.04.2016 um 20:15 schrieb Richard Henderson: > On 04/07/2016 08:53 AM, Sergey Fedorov wrote: >> +/* Enable TCI assertions only when debugging TCG (and without NDEBUG >> defined). >> + * Without assertions, the interpreter runs much faster. */ >> +#if defined(CONFIG_DEBUG_TCG) >> +# define tci_assert(cond) assert(cond) >> +#else >> +# define tci_assert(cond) ((void)0) >> #endif >> >=20 > Please just use tcg_debug_assert. >=20 >=20 > r~ Hi Richard, that's a good suggestion, but maybe a little late for 2.6-rc2. I already sent a pull request an hour ago after Michael had added his tested-by. My first priority is fixing the build regression in 2.6. I can try to prepare a new patch, wait for reviews and send a pull request, but I am afraid this might not be finished in time for 2.6. Regards Stefan