From b34c5ce4b22e8d7b81f9895d15054af41d17f805 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Tue, 5 Apr 2011 22:41:33 +0300 Subject: [PATCH] liblzma: Use TUKLIB_GNUC_REQ to check GCC version in sha256.c. --- src/liblzma/check/sha256.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/liblzma/check/sha256.c b/src/liblzma/check/sha256.c index 04231db..074cd74 100644 --- a/src/liblzma/check/sha256.c +++ b/src/liblzma/check/sha256.c @@ -22,13 +22,13 @@ // /////////////////////////////////////////////////////////////////////////////// +#include "check.h" + // Avoid bogus warnings in transform(). -#if (__GNUC__ == 4 && __GNUC_MINOR__ >= 2) || __GNUC__ > 4 +#if TUKLIB_GNUC_REQ(4, 2) # pragma GCC diagnostic ignored "-Wuninitialized" #endif -#include "check.h" - // At least on x86, GCC is able to optimize this to a rotate instruction. #define rotr_32(num, amount) ((num) >> (amount) | (num) << (32 - (amount))) -- 2.7.4