From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:54885) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TJTGd-0004fM-NM for qemu-devel@nongnu.org; Wed, 03 Oct 2012 14:01:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TJTGZ-0003he-Dv for qemu-devel@nongnu.org; Wed, 03 Oct 2012 14:01:55 -0400 Received: from mx1.redhat.com ([209.132.183.28]:18510) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TJTGZ-0003hN-5h for qemu-devel@nongnu.org; Wed, 03 Oct 2012 14:01:51 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q93I1nAD007349 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 3 Oct 2012 14:01:50 -0400 From: =?UTF-8?q?S=C3=B8ren=20Sandmann?= Date: Wed, 3 Oct 2012 14:04:58 -0400 Message-Id: <1349287498-10475-1-git-send-email-sandmann@cs.au.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH] Fix compilation on GCC 4.5 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?S=C3=B8ren=20Sandmann=20Pedersen?= From: S=C3=B8ren Sandmann Pedersen Apparently GCC 4.5 still warns about "value computed not used" even with __attribute__((unused)). Fix this by only doing the compile time check on gcc > 4.5. Signed-off-by: Soren Sandmann --- I need this patch to get qemu to compile with GCC 4.5, but I'm not sure if 4.5 is the right compiler version to check against. osdep.h | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/osdep.h b/osdep.h index cb213e0..df89552 100644 --- a/osdep.h +++ b/osdep.h @@ -41,8 +41,9 @@ typedef signed int int_fast16_t; #endif =20 /* Convert from a base type to a parent type, with compile time checking= . */ -#ifdef __GNUC__ -#define DO_UPCAST(type, field, dev) ( __extension__ ( { \ +#if defined (__GNUC__) && \ + (__GNUC__ > 4 || (__GNUC__ =3D=3D 4 && __GNUC_MINOR__ > 5)) +#define DO_UPCAST(type, field, dev) ( __extension__ ( { \ char __attribute__((unused)) offset_must_be_zero[ \ -offsetof(type, field)]; \ container_of(dev, type, field);})) --=20 1.7.4