From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47426) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XUfSi-0004Pw-AC for qemu-devel@nongnu.org; Thu, 18 Sep 2014 13:25:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XUfSa-0007hu-QO for qemu-devel@nongnu.org; Thu, 18 Sep 2014 13:25:44 -0400 From: Tobias Klauser Date: Thu, 18 Sep 2014 19:25:24 +0200 Message-Id: <1411061124-21108-1-git-send-email-tklauser@distanz.ch> Subject: [Qemu-devel] [PATCH] disas/arm: Remove redefinition of ATTRIBUTE_UNUSED List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org ATTRIBUTE_UNUSED is already defined in disas/bfd.h, which is included. Thus, there is no need to redefine it. Signed-off-by: Tobias Klauser --- disas/arm.c | 1 - 1 file changed, 1 deletion(-) diff --git a/disas/arm.c b/disas/arm.c index 76e97a8..6f63406 100644 --- a/disas/arm.c +++ b/disas/arm.c @@ -23,7 +23,6 @@ for things we don't care about. */ #include "disas/bfd.h" -#define ATTRIBUTE_UNUSED __attribute__((unused)) #define ISSPACE(x) ((x) == ' ' || (x) == '\t' || (x) == '\n') #define ARM_EXT_V1 0 -- 2.0.1