From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34947) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fIAWr-0004T2-Um for qemu-devel@nongnu.org; Mon, 14 May 2018 06:16:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fIAWq-0003NQ-VU for qemu-devel@nongnu.org; Mon, 14 May 2018 06:16:29 -0400 Received: from mx3-rdu2.redhat.com ([66.187.233.73]:44428 helo=mx1.redhat.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fIAWq-0003Mt-Pk for qemu-devel@nongnu.org; Mon, 14 May 2018 06:16:28 -0400 Date: Mon, 14 May 2018 12:16:22 +0200 From: Cornelia Huck Message-ID: <20180514121622.784afa7d.cohuck@redhat.com> In-Reply-To: <20180512045950.12386-5-richard.henderson@linaro.org> References: <20180512045950.12386-1-richard.henderson@linaro.org> <20180512045950.12386-5-richard.henderson@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 2/2] target/s390x: Fix brace Werror with clang 6.0.0 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Richard Henderson Cc: qemu-devel@nongnu.org, laurent@vivier.eu, Alexander Graf , David Hildenbrand On Fri, 11 May 2018 21:59:43 -0700 Richard Henderson wrote: > The warning is > > target/s390x/misc_helper.c:209:21: error: suggest > braces around initialization of subobject [-Werror,-Wmissing-braces] > SysIB sysib = { 0 }; > ^ > {} > > While the original code is correct, and technically exactly correct > as per ISO C89, both GCC and Clang support plain empty set of braces > as an extension. > > Cc: Alexander Graf > Cc: David Hildenbrand > Cc: Cornelia Huck > Signed-off-by: Richard Henderson > --- > target/s390x/misc_helper.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/target/s390x/misc_helper.c b/target/s390x/misc_helper.c > index e0b23c1fd1..1f834f35ef 100644 > --- a/target/s390x/misc_helper.c > +++ b/target/s390x/misc_helper.c > @@ -206,7 +206,7 @@ uint32_t HELPER(stsi)(CPUS390XState *env, uint64_t a0, uint64_t r0, uint64_t r1) > const MachineState *ms = MACHINE(qdev_get_machine()); > uint16_t total_cpus = 0, conf_cpus = 0, reserved_cpus = 0; > S390CPU *cpu = s390_env_get_cpu(env); > - SysIB sysib = { 0 }; > + SysIB sysib = { }; > int i, cc = 0; > > if ((r0 & STSI_R0_FC_MASK) > STSI_R0_FC_LEVEL_3) { Thanks, applied.