From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52617) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gX6Mm-00016z-W7 for qemu-devel@nongnu.org; Wed, 12 Dec 2018 10:24:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gX6Mh-0000SH-MJ for qemu-devel@nongnu.org; Wed, 12 Dec 2018 10:24:02 -0500 Received: from mail-wm1-x336.google.com ([2a00:1450:4864:20::336]:34997) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gX6Mh-0000Qt-Bx for qemu-devel@nongnu.org; Wed, 12 Dec 2018 10:23:59 -0500 Received: by mail-wm1-x336.google.com with SMTP id c126so6366926wmh.0 for ; Wed, 12 Dec 2018 07:23:59 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Wed, 12 Dec 2018 16:22:58 +0100 Message-Id: <1544628195-37728-38-git-send-email-pbonzini@redhat.com> In-Reply-To: <1544628195-37728-1-git-send-email-pbonzini@redhat.com> References: <1544628195-37728-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PULL 37/54] audio/alsaaudio: Remove compiler check around pragma List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Thomas Huth From: Thomas Huth Both GCC v4.8 and Clang v3.4 support the -Waddress option, so we do not need the compiler version check here anymore. Signed-off-by: Thomas Huth Reviewed-by: Richard Henderson Message-Id: <1543937577-28256-6-git-send-email-thuth@redhat.com> --- audio/alsaaudio.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/audio/alsaaudio.c b/audio/alsaaudio.c index 362a227..635be73 100644 --- a/audio/alsaaudio.c +++ b/audio/alsaaudio.c @@ -28,9 +28,7 @@ #include "audio.h" #include "trace.h" -#if QEMU_GNUC_PREREQ(4, 3) #pragma GCC diagnostic ignored "-Waddress" -#endif #define AUDIO_CAP "alsa" #include "audio_int.h" -- 1.8.3.1