From b3020122a9923fc2f5b9b6cf349d2c30bb5229f1 Mon Sep 17 00:00:00 2001 From: Thomas Huth Date: Tue, 18 Dec 2018 03:51:23 -0500 Subject: [PATCH] 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. Backports commit 40f87e2680a3fda6117a08db9106a01345806a66 from qemu --- qemu/configure | 5 ----- 1 file changed, 5 deletions(-) diff --git a/qemu/configure b/qemu/configure index 1ff7918f..02138edf 100755 --- a/qemu/configure +++ b/qemu/configure @@ -1149,11 +1149,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) {