From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Kdqi8-0005pI-Pd for qemu-devel@nongnu.org; Thu, 11 Sep 2008 14:16:08 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Kdqi7-0005mv-QI for qemu-devel@nongnu.org; Thu, 11 Sep 2008 14:16:08 -0400 Received: from [199.232.76.173] (port=42758 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Kdqi7-0005mO-1y for qemu-devel@nongnu.org; Thu, 11 Sep 2008 14:16:07 -0400 Received: from savannah.gnu.org ([199.232.41.3]:41418 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Kdqi7-0002GC-CR for qemu-devel@nongnu.org; Thu, 11 Sep 2008 14:16:07 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1Kdqi4-00077z-Vp for qemu-devel@nongnu.org; Thu, 11 Sep 2008 18:16:05 +0000 Received: from blueswir1 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1Kdqi4-00077u-1R for qemu-devel@nongnu.org; Thu, 11 Sep 2008 18:16:04 +0000 MIME-Version: 1.0 Errors-To: blueswir1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Blue Swirl Message-Id: Date: Thu, 11 Sep 2008 18:16:04 +0000 Subject: [Qemu-devel] [5198] Enable gcc flag -Wendif-labels Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 5198 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5198 Author: blueswir1 Date: 2008-09-11 18:16:02 +0000 (Thu, 11 Sep 2008) Log Message: ----------- Enable gcc flag -Wendif-labels Modified Paths: -------------- trunk/Makefile.target trunk/configure Modified: trunk/Makefile.target =================================================================== --- trunk/Makefile.target 2008-09-11 18:00:19 UTC (rev 5197) +++ trunk/Makefile.target 2008-09-11 18:16:02 UTC (rev 5198) @@ -73,7 +73,7 @@ PROGS=$(QEMU_PROG) # We require -O2 to avoid the stack setup prologue in EXIT_TB -OP_CFLAGS := -Wall -Wundef -O2 -g -fno-strict-aliasing +OP_CFLAGS := -Wall -Wundef -Wendif-labels -O2 -g -fno-strict-aliasing # cc-option # Usage: OP_CFLAGS+=$(call cc-option, -falign-functions=0, -malign-functions=0) Modified: trunk/configure =================================================================== --- trunk/configure 2008-09-11 18:00:19 UTC (rev 5197) +++ trunk/configure 2008-09-11 18:16:02 UTC (rev 5198) @@ -346,7 +346,7 @@ done # default flags for all hosts -CFLAGS="$CFLAGS -Wall -Wundef -O2 -g -fno-strict-aliasing" +CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -O2 -g -fno-strict-aliasing" LDFLAGS="$LDFLAGS -g" if test "$werror" = "yes" ; then CFLAGS="$CFLAGS -Werror"