From: Thomas Huth Date: Tue, 4 Dec 2018 12:05:44 +0000 (+0100) Subject: configure: Remove obsolete check for Clang < 3.2 X-Git-Tag: v4.0.0-rc0~213^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=40f87e2680a3fda6117a08db9106a01345806a66;p=thirdparty%2Fqemu.git configure: Remove obsolete check for Clang < 3.2 Since we have got a check for Clang >= 3.4 now, we do not need to check for older Clang versions in the configure test for 128-bit ints anymore. Reviewed-by: Richard Henderson Signed-off-by: Thomas Huth --- diff --git a/configure b/configure index 7621c008a54..ca364f633ce 100755 --- a/configure +++ b/configure @@ -5148,11 +5148,6 @@ fi int128=no cat > $TMPC << EOF -#if defined(__clang_major__) && defined(__clang_minor__) -# if ((__clang_major__ < 3) || (__clang_major__ == 3) && (__clang_minor__ < 2)) -# error __int128_t does not work in CLANG before 3.2 -# endif -#endif __int128_t a; __uint128_t b; int main (void) {