From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:44299) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SqTeP-0004iF-Cs for qemu-devel@nongnu.org; Sun, 15 Jul 2012 14:34:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SqTeN-0005SD-FA for qemu-devel@nongnu.org; Sun, 15 Jul 2012 14:34:37 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:46120) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SqTeN-0005S2-8n for qemu-devel@nongnu.org; Sun, 15 Jul 2012 14:34:35 -0400 From: Stefan Weil Date: Sun, 15 Jul 2012 20:34:32 +0200 Message-Id: <1342377272-32511-2-git-send-email-sw@weilnetz.de> In-Reply-To: <1342377272-32511-1-git-send-email-sw@weilnetz.de> References: <1342377272-32511-1-git-send-email-sw@weilnetz.de> Subject: [Qemu-devel] [PATCH 2/2] configure: Fix errors in test for__sync_fetch_and_and List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Blue Swirl Cc: Stefan Weil , qemu-devel@nongnu.org The old test code raises two compiler warnings which are errors since commit 417c9d72d48275d19c60861896efd4962d21aca2. These errors could result in compilations with compiler flag -march486 (so all nice features of newer processors got lost). Signed-off-by: Stefan Weil --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/configure index 0269ba0..df5c99a 100755 --- a/configure +++ b/configure @@ -2809,7 +2809,7 @@ fi # specification is necessary if test "$vhost_net" = "yes" && test "$cpu" = "i386"; then cat > $TMPC << EOF -int sfaa(unsigned *ptr) +static int sfaa(int *ptr) { return __sync_fetch_and_and(ptr, 0); } -- 1.7.0.4