From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49997) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1brqJf-0001V2-Eh for qemu-devel@nongnu.org; Wed, 05 Oct 2016 13:49:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1brqJb-0006MB-3x for qemu-devel@nongnu.org; Wed, 05 Oct 2016 13:49:14 -0400 Received: from mail-oi0-x242.google.com ([2607:f8b0:4003:c06::242]:33019) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1brqJa-0006M7-Vf for qemu-devel@nongnu.org; Wed, 05 Oct 2016 13:49:11 -0400 Received: by mail-oi0-x242.google.com with SMTP id o93so4457827oik.0 for ; Wed, 05 Oct 2016 10:49:10 -0700 (PDT) Sender: Richard Henderson References: <1474048017-26696-1-git-send-email-rth@twiddle.net> <1474048017-26696-16-git-send-email-rth@twiddle.net> <87mvikru8i.fsf@linaro.org> From: Richard Henderson Message-ID: Date: Wed, 5 Oct 2016 10:49:07 -0700 MIME-Version: 1.0 In-Reply-To: <87mvikru8i.fsf@linaro.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH v4 15/35] tcg: Add CONFIG_ATOMIC64 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?Q?Alex_Benn=c3=a9e?= Cc: qemu-devel@nongnu.org On 10/04/2016 08:47 AM, Alex Bennée wrote: >> + char is_host64[sizeof(void *) >= sizeof(uint64_t) ? 1 : -1]; > > > This breaks with --enable-werror (and my Travis images): > > config-temp/qemu-conf.c: In function ‘main’: > config-temp/qemu-conf.c:12:8: error: unused variable ‘is_host64’ [-Werror=unused-variable] > > I'm not sure what the best fix is here? Pass -no-werror to the test compile? Dammit, this is something else that I swear I already fixed. Just add a typedef to the start of the line. r~